StandarDesign/StandardDesign.Models/SocketModel.cs

13 lines
210 B
C#
Raw Permalink Normal View History

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