21 lines
407 B
C#
21 lines
407 B
C#
namespace FrontendWebApi.Models
|
|
{
|
|
public class HiNet
|
|
{
|
|
}
|
|
|
|
public class HiNetInput
|
|
{
|
|
public string Msg { get; set; }
|
|
public string Number { get; set; }
|
|
}
|
|
|
|
public class HiNetConfig
|
|
{
|
|
public string account { get; set; }
|
|
public string password { get; set; }
|
|
public string ip { get; set; }
|
|
public int port { get; set; }
|
|
}
|
|
}
|