Add the language to the user.

This commit is contained in:
Sébastien André
2021-05-17 18:08:19 +02:00
parent 96fbf5cebd
commit bc17e7f789
5 changed files with 16 additions and 9 deletions

View File

@@ -4,16 +4,18 @@
{
public int Id { get; set; }
public string Email { get; set; }
public string Email { get; set; }
public string FirstName { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string LastName { get; set; }
public string Login { get; set; }
public string Password { get; set; }
public bool IsAdmin { get; set; }
public string Language { get; set; }
}
}
}