初始化

This commit is contained in:
2025-11-20 09:56:11 +08:00
commit f19e6ad613
87 changed files with 75630 additions and 0 deletions

12
Models/SmsRequest.cs Normal file
View File

@@ -0,0 +1,12 @@
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>
}
}