21 lines
423 B
C#
21 lines
423 B
C#
namespace skydiveLogs_api.Domain
|
|
{
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string FirstName { 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; }
|
|
}
|
|
} |