2024-04-18 16:47:15 +04:00
|
|
|
|
using ComputerHardwareStoreDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace ComputerHardwareStoreContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class StoreKeeperBindingModel : IStoreKeeperModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-04-25 22:38:28 +04:00
|
|
|
|
public string Login { get; set; } = string.Empty;
|
2024-04-18 16:47:15 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|