This commit is contained in:
Dhananjaya99
2026-07-08 11:11:50 +05:30
parent 2cd2741f77
commit de7b40a147
51 changed files with 6839 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace AuthHex.DTOs
{
public class OtpResponse
{
public int? StatusCode { get; set; }
public string? Message { get; set; }
public string? ApiResponse { get; set; }
public string? Error { get; set; }
}
}
+9
View File
@@ -0,0 +1,9 @@
namespace AuthHex.DTOs
{
public class SmsRequest
{
public string? api_key { get; set; }
public string? phone_number { get; set; }
public string? msg_text { get; set; }
}
}
+9
View File
@@ -0,0 +1,9 @@
namespace AuthHex.DTOs.Tute
{
public class UpdateTuteItemRequest
{
public int Id { get; set; }
public string Title { get; set; } = string.Empty;
public string? Notes { get; set; }
}
}