ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreContracts/ViewModels/StoreKeeperViewModel.cs

17 lines
544 B
C#
Raw Normal View History

2024-04-18 15:03:40 +04:00
using ComputerHardwareStoreDataModels.Models;
using System.ComponentModel;
namespace ComputerHardwareStoreContracts.ViewModels
{
public class StoreKeeperViewModel : IStoreKeeperModel
2024-04-18 15:03:40 +04:00
{
public int Id { get; set; }
[DisplayName("Имя кладовщика")]
public string Name { get; set; } = string.Empty;
2024-04-18 15:03:40 +04:00
[DisplayName("Логин")]
public string Login { get; set; } = string.Empty;
2024-04-18 15:03:40 +04:00
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
2024-04-18 15:03:40 +04:00
}
}