10 lines
189 B
C#
10 lines
189 B
C#
|
namespace HotelDataModels.Models
|
|||
|
{
|
|||
|
public interface IParticipantModels : IId
|
|||
|
{
|
|||
|
string Surname { get; }
|
|||
|
string Name { get; }
|
|||
|
string Number { get; }
|
|||
|
int OrganiserId { get; }
|
|||
|
}
|
|||
|
}
|