20 lines
521 B
C#
20 lines
521 B
C#
using ElectronicsShopDataModels;
|
|
using ElectronicsShopDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ElectronicsShopContracts.BindingModels
|
|
{
|
|
public class UserBindingModel : IUserModel {
|
|
public int ID { get; set; }
|
|
|
|
public int RoleID { get; set; }
|
|
public string UserFIO { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string Login { get; set; } = string.Empty;
|
|
}
|
|
}
|