29 lines
513 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|