8 lines
161 B
C#

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