10 lines
212 B
C#
Raw Normal View History

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