17 lines
544 B
C#
17 lines
544 B
C#
using ComputerHardwareStoreDataModels.Models;
|
|
using System.ComponentModel;
|
|
|
|
namespace ComputerHardwareStoreContracts.ViewModels
|
|
{
|
|
public class StoreKeeperViewModel : IStoreKeeperModel
|
|
{
|
|
public int Id { get; set; }
|
|
[DisplayName("Имя кладовщика")]
|
|
public string Name { get; set; } = string.Empty;
|
|
[DisplayName("Логин")]
|
|
public string Login { get; set; } = string.Empty;
|
|
[DisplayName("Пароль")]
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|
|
}
|