9 lines
161 B
C#

namespace HotelDataModels.Models
{
public interface IParticipantModel : IId
{
string FIO { get; }
string Number { get; }
int OrganiserId { get; }
}
}