10 lines
191 B
C#
10 lines
191 B
C#
namespace PolyclinicDataModels.Models
|
|
{
|
|
public interface IExecutorModel : IId
|
|
{
|
|
string FIO { get; }
|
|
string Email { get; }
|
|
string Password { get; }
|
|
}
|
|
}
|