13 lines
394 B
C#
13 lines
394 B
C#
|
using ComputerHardwareStoreDataModels.Models;
|
|||
|
|
|||
|
namespace ComputerHardwareStoreContracts.BindingModels
|
|||
|
{
|
|||
|
public class StoreKeeperBindingModel : IStoreKeeperModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
public string Email { get; set; } = string.Empty;
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|