Added Models

This commit is contained in:
kdeng00
2023-09-17 21:05:12 -04:00
parent ee2068a87e
commit 3d45646a96
4 changed files with 61 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace TextSender_API.Models;
public class TextQueue
{
#region Properties
public int TextQueueID { get; set; }
public string Status { get; set; }
public string ContactPhoneNumber { get; set; }
public int TextID { get; set; }
public int UserID { get; set; }
public DateTime DateCreated { get; set; }
public DateTime ExecutionDate { get; set; }
#endregion
}