Computer_Hardware_Store/HardwareShop/HardwareShopContracts/BindingModels/ClientBindingModel.cs

19 lines
511 B
C#
Raw Normal View History

using HardwareShopDataModels.Models;
2023-04-01 12:58:12 +04:00
using HardwareShopDataModels.Enums;
using System.ComponentModel;
namespace HardwareShopContracts.BindingModels
2023-04-01 12:58:12 +04:00
{
public class ClientBindingModel : IClientModel
{
public int Id { get; set; }
public string Login { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public UserRole Role { get; set; } = UserRole.Неизвестен;
}
}