Model and migration changes

This commit is contained in:
kdeng00
2024-06-20 17:12:10 -04:00
parent 5c913869b4
commit f3eccfd46e
32 changed files with 111 additions and 123 deletions
+3 -3
View File
@@ -9,10 +9,10 @@ namespace Icarus.Models;
public class User
{
#region Properties
[JsonProperty("user_id")]
[Column("UserID")]
[JsonProperty("id")]
[Column("Id")]
[Key]
public int UserID { get; set; }
public int Id { get; set; }
[JsonProperty("username")]
public string Username { get; set; }
[JsonProperty("password")]