18 lines
476 B
C#
18 lines
476 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.ViewModels
|
|||
|
{
|
|||
|
public class UserViewModel
|
|||
|
{
|
|||
|
public Guid Id { get; set; }
|
|||
|
public string FirstName { get; set; } = string.Empty;
|
|||
|
public string SecondName { get; set; } = string.Empty;
|
|||
|
public string Email { get; set; } = string.Empty;
|
|||
|
public DateTime Birthday { get; set; }
|
|||
|
public RoleViewModel Role { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|