10 lines
217 B
C#

namespace HotelDataModels.Models;
public interface IMaitreModel : IId
{
string Name { get; }
string SecondName { get; }
string LastName { get; }
string Login { get; }
string Password { get; }
}