10 lines
205 B
C#
10 lines
205 B
C#
|
namespace ComputerHardwareStoreDataModels.Models
|
|||
|
{
|
|||
|
public interface IStoreKeeperModel : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string Login { get; }
|
|||
|
string Password { get; }
|
|||
|
}
|
|||
|
}
|