10 lines
217 B
C#
Raw Normal View History

2023-04-06 17:38:35 +04:00
namespace HotelDataModels.Models;
2023-04-06 17:52:12 +04:00
public interface IMaitreModel : IId
2023-04-06 17:38:35 +04:00
{
string Name { get; }
string SecondName { get; }
string LastName { get; }
string Login { get; }
string Password { get; }
}