32 lines
600 B
C#
32 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolDataModels.Models
|
|
{
|
|
/// <summary>
|
|
/// Клиент
|
|
/// </summary>
|
|
public interface IClientModel : IId
|
|
{
|
|
/// <summary>
|
|
/// Имя
|
|
/// </summary>
|
|
public string ClientName { get; }
|
|
/// <summary>
|
|
/// Email
|
|
/// </summary>
|
|
public string ClientEmail { get; }
|
|
/// <summary>
|
|
/// Телефон
|
|
/// </summary>
|
|
public string ClientPhone { get; }
|
|
/// <summary>
|
|
/// Пароль
|
|
/// </summary>
|
|
public string ClientPassword { get; }
|
|
}
|
|
}
|