Sweaty-Launcher/Model/ServerItem.cs
2023-02-10 21:19:10 -05:00

14 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; }
}
}