Files
Web_AutoNotificatPhone_Serv…/Models/SmsRequest.cs

12 lines
373 B
C#
Raw Normal View History

2025-11-20 09:56:11 +08:00
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>
}
}