11 lines
212 B
C#
11 lines
212 B
C#
using ServiceStationDataModels.HelperInterfaces;
|
|
|
|
namespace ServiceStationDataModels.Models
|
|
{
|
|
public interface IClientModel : IId
|
|
{
|
|
string FIO { get; }
|
|
int TotalPoints { get; }
|
|
}
|
|
}
|