26 lines
636 B
C#
26 lines
636 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VeterinaryClinicDataModels.Enums;
|
|
using VeterinaryClinicDataModels.Models;
|
|
|
|
namespace VeterinaryClinicContracts.BindingModels
|
|
{
|
|
public class UserBindingModel : IUserModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string FullName { get; set; } = string.Empty;
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public UserRole Role { get; set; }
|
|
}
|
|
}
|