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