Files
ComputerHardwareStore_YouAr…/ComputerHardwareStore/ComputerHardwareStoreDataModels/Models/IStoreKeeperModel.cs
2024-04-17 21:44:51 +04:00

10 lines
205 B
C#

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