14 lines
241 B
C#
14 lines
241 B
C#
namespace BookShopDataModels.Models
|
|
{
|
|
public interface IClientModel: IId
|
|
{
|
|
string ClientSurname { get; }
|
|
|
|
string ClientName { get; }
|
|
|
|
string ClientPatronymic { get; }
|
|
|
|
string Email { get; }
|
|
}
|
|
}
|