adjust alias length

This commit is contained in:
Stanley Dimant
2022-10-04 14:59:50 +02:00
parent a60409d2bd
commit e2e97065f4
4 changed files with 433 additions and 3 deletions

View File

@@ -15,6 +15,6 @@ public class User
public bool IsAdmin { get; set; } = false;
public DateTime LastLoggedIn { get; set; }
[MaxLength(10)]
[MaxLength(15)]
public string Alias { get; set; }
}