12 lines
242 B
C#
Raw Normal View History

using ServiceStationDataModels.HelperInterfaces;
namespace ServiceStationDataModels.Models
{
public interface IClientModel : IId
{
string FIO { get; }
string Password { get; }
2024-08-10 18:43:15 +04:00
string Login { get; }
}
}