10 lines
208 B
C#
10 lines
208 B
C#
namespace AuthHex.DTOs
|
|
{
|
|
public class SmsRequest
|
|
{
|
|
public string? api_key { get; set; }
|
|
public string? phone_number { get; set; }
|
|
public string? msg_text { get; set; }
|
|
}
|
|
}
|