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

17 lines
371 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; set; }
public string ClientEmail { get; set; }
public string ClientPhone { get; set; }
public string ClientPassword { get; set; }
}
}