refactor: models use guids as PKs now

This commit is contained in:
2025-09-29 14:40:46 +03:00
parent 8bc18c25b5
commit 56c874e220
12 changed files with 27 additions and 27 deletions

View File

@@ -2,7 +2,7 @@ namespace GamificationService.Models.Database;
public class Rank
{
public long Id { get; set; }
public Guid Id { get; set; }
public string Title { get; set; } = string.Empty;
public int ExpNeeded { get; set; }