Sweaty-Launcher/Model/ServerItem.cs

15 lines
310 B
C#
Raw Normal View History

2023-02-11 02:19:10 +00:00
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; }
}
}