2023-04-06 17:38:35 +04:00

8 lines
156 B
C#

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