22 lines
407 B
C#
22 lines
407 B
C#
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.Model
|
|
{
|
|
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 IEnumerable<Image> Images { get; set; }
|
|
}
|
|
}
|