complet model builder
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 50s

This commit is contained in:
2025-04-09 21:39:05 +02:00
parent b7939115e2
commit 749146c8c4
4 changed files with 143 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ public partial class Game
GameDevelopers = new HashSet<GameDeveloper>();
}
public int Id { get; set; }
public Guid Id { get; set; }
public string Title { get; set; } = null!;
public DateTime? ReleaseDate { get; set; }
public DateTime CreationDate { get; set; }

View File

@@ -8,7 +8,7 @@ public partial class User
ModificationGames = new HashSet<Game>();
}
public Guid Id { get; set; }
public int Id { get; set; }
public string Username { get; set; } = null!;
public string Password { get; set; } = null!;
public int Role { get; set; }