8 lines
161 B
C#
Raw Normal View History

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