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