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; } // 类型 : 1电话 2短信
|
||
}
|
||
} |