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
+14
View File
@@ -0,0 +1,14 @@
using System;
namespace TextSender_API.Models;
public class Text
{
#region Properties
public int TextID { get; set; }
public string Subject { get; set; }
public string Message { get; set; }
public int UserID { get; set; }
public DateTime DateCreated { get; get; }
#endregion
}