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

17 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolDataModels.Models
{
public interface IClientModel : IId
{
public string ClientName { get; }
public string ClientEmail { get; }
public string ClientPhone { get; }
public string ClientPassword { get; }
}
}