9 lines
162 B
C#

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