PIbd-22_Bazunov_AI_Hotel/Hotel/HotelDataModels/Models/IMaitre.cs
2023-04-06 17:38:35 +04:00

10 lines
212 B
C#

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