mirror of
https://github.com/casksteven/Sweaty-Launcher.git
synced 2024-06-24 21:09:27 +00:00
15 lines
310 B
C#
15 lines
310 B
C#
|
namespace Launcher.Model
|
|||
|
{
|
|||
|
public class ServerItem
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
|
|||
|
public ProxyConfig proxy { get; set; }
|
|||
|
|
|||
|
public string RSAPublicKey { get; set; }
|
|||
|
|
|||
|
public string RSAPrivateKey { get; set; }
|
|||
|
}
|
|||
|
}
|