8 lines
156 B
C#
8 lines
156 B
C#
namespace HotelDataModels.Models;
|
|
|
|
public interface IGuest : IId
|
|
{
|
|
string Name { get; }
|
|
string SecondName { get; }
|
|
string LastName { get; }
|
|
} |