Files
SkydiveLogs/Back/skydiveLogs-api.Domain/User.cs
2021-08-11 22:37:14 +02:00

20 lines
491 B
C#

namespace skydiveLogs_api.Domain
{
public class User
{
#region Public Properties
public string Email { get; set; }
public string FirstName { get; set; }
public int Id { get; set; }
public bool IsAdmin { get; set; }
public string Language { get; set; }
public string LastName { get; set; }
public string Login { get; set; }
public string Password { get; set; }
#endregion Public Properties
}
}