ISEbd-21_Tukaeva_A_A_School/School/SchoolDataModels/Models/IClientModel.cs

32 lines
600 B
C#
Raw Permalink Normal View History

2023-04-03 18:46:26 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolDataModels.Models
{
/// <summary>
/// Клиент
/// </summary>
2023-04-03 18:46:26 +04:00
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; }
2023-04-03 18:46:26 +04:00
}
}