12 lines
373 B
C#
12 lines
373 B
C#
|
|
namespace AutoNotificatPhone.Models
|
|||
|
|
{
|
|||
|
|
public class SmsRequest
|
|||
|
|
{
|
|||
|
|
public string PhoneNumber { get; set; }
|
|||
|
|
public string CallerName { get; set; }
|
|||
|
|
public string Content { get; set; }
|
|||
|
|
public long StartingPoint { get; set; }
|
|||
|
|
public long DeadLine { get; set; }
|
|||
|
|
public string Type { get; set; } // <20><><EFBFBD><EFBFBD> <20><> 1<>绰 2<><32><EFBFBD><EFBFBD>
|
|||
|
|
}
|
|||
|
|
}
|