31 lines
822 B
C#
31 lines
822 B
C#
|
using ElectronicsShopDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ElectronicsShopContracts.BindingModels
|
|||
|
{
|
|||
|
public class ShopAssistentBindingModel : IShopAssistentModel
|
|||
|
{
|
|||
|
//ID пользователя
|
|||
|
public int UserID { get; set; }
|
|||
|
//ID роли (сотрудник)
|
|||
|
public int RoleID { get; set; }
|
|||
|
|
|||
|
|
|||
|
public string FirstName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string LastName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Login { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Email { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string PhoneNumber { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|