StandarDesign/StandardDesign.Models/SocketModel.cs
2024-01-31 14:26:57 +08:00

13 lines
210 B
C#

namespace StandardDesign.Models
{
public class SocketModel
{
public string IP { get; set; }
public string Port { get; set; }
public string AuthorizeCode { get; set; }
}
}