CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BindingModels/UserBindingModel.cs

20 lines
521 B
C#
Raw Normal View History

2024-04-28 23:08:09 +04:00
using ElectronicsShopDataModels;
using ElectronicsShopDataModels.Models;
2024-04-27 13:01:57 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.BindingModels
{
2024-05-19 16:01:45 +04:00
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;
}
2024-04-27 13:01:57 +04:00
}