17 lines
247 B
C#
17 lines
247 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace STPClient
|
|
{
|
|
public class STPClient
|
|
{
|
|
private List<(string address, string archive)> servers = new List<(string address, string archive)>();
|
|
|
|
STPClient()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|