PIbd-23_Sergunov_M.A._SUBD/BookShop/BookShopDataModels/Models/IClientModel.cs

14 lines
241 B
C#

namespace BookShopDataModels.Models
{
public interface IClientModel: IId
{
string ClientSurname { get; }
string ClientName { get; }
string ClientPatronymic { get; }
string Email { get; }
}
}