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 User
{
#region Properties
public int UserID { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public string PhoneNumber { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public DateTime DateCreated { get; set; }
#endregion
}