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

29 lines
513 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace STPClient.Struct
{
struct server
{
string name;
string address;
string archive;
public server(string Address, string Archive)
{
name = "default";
address = Address;
archive = Archive;
}
public server(string Name, string Address, string Archive)
{
name = Name;
address = Address;
archive = Archive;
}
}
}