ASCU_ALL/STPClient/STPClient.cs
2021-05-25 23:29:32 +05:00

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()
{
}
}
}