Files
2025-11-20 09:56:33 +08:00

12 lines
373 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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短信
}
}