ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreDataModels/Models/IStoreKeeperModel.cs

10 lines
205 B
C#

namespace ComputerHardwareStoreDataModels.Models
{
public interface IStoreKeeperModel : IId
{
string Name { get; }
string Login { get; }
string Password { get; }
}
}