2024-04-17 17:43:28 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicDataModels.Models
|
|
|
|
|
{
|
2024-04-17 21:55:50 +04:00
|
|
|
|
public interface ISuretorModel : IId
|
2024-04-17 17:43:28 +04:00
|
|
|
|
{
|
|
|
|
|
string FIO { get; }
|
|
|
|
|
string Password { get; }
|
2024-04-17 23:24:23 +04:00
|
|
|
|
string Email { get; }
|
2024-04-17 17:43:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|