Fix db and fix endpoints

This commit is contained in:
2025-08-05 22:30:18 +07:00
parent 2dcbcc3ef2
commit 36529ae403
36 changed files with 5073 additions and 245 deletions

View File

@@ -6,21 +6,15 @@ namespace Managing.Domain.Users;
[GenerateSerializer]
public class User
{
[Id(0)]
public int Id { get; set; }
[Id(0)] public int Id { get; set; }
[Id(1)]
public string Name { get; set; }
[Id(2)]
public List<Account> Accounts { get; set; }
[Id(3)]
public string AgentName { get; set; }
[Id(4)]
public string AvatarUrl { get; set; }
[Id(5)]
public string TelegramChannel { get; set; }
[Id(1)] public string Name { get; set; }
[Id(2)] public List<Account> Accounts { get; set; }
[Id(3)] public string AgentName { get; set; } = string.Empty;
[Id(4)] public string AvatarUrl { get; set; } = string.Empty;
[Id(5)] public string TelegramChannel { get; set; } = string.Empty;
}