2024-08-03 22:26:15 +03:00
|
|
|
|
using ServiceStationDataModels.HelperInterfaces;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IClientModel : IId
|
|
|
|
|
{
|
|
|
|
|
string FIO { get; }
|
2024-08-22 20:40:32 +04:00
|
|
|
|
int TotalPoints { get; }
|
2024-08-03 22:26:15 +03:00
|
|
|
|
}
|
|
|
|
|
}
|