12 lines
242 B
C#
12 lines
242 B
C#
using ServiceStationDataModels.HelperInterfaces;
|
|
|
|
namespace ServiceStationDataModels.Models
|
|
{
|
|
public interface IClientModel : IId
|
|
{
|
|
string FIO { get; }
|
|
string Password { get; }
|
|
string Login { get; }
|
|
}
|
|
}
|