17 lines
371 B
C#
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; }
|
|||
|
}
|
|||
|
}
|