2024-08-27 16:29:09 +04:00

10 lines
179 B
C#

using ServiceStationDataModels.HelperInterfaces;
namespace ServiceStationDataModels.Models
{
public interface IClientModel : IId
{
string FIO { get; }
}
}