10 lines
179 B
C#
Raw Normal View History

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