11 lines
250 B
C#
11 lines
250 B
C#
namespace HotelDataModels.Models
|
|
{
|
|
public interface IConferenceModel : IId
|
|
{
|
|
string ConferenceName { get; }
|
|
string Subject { get; }
|
|
int OrganiserId { get; }
|
|
public Dictionary<int, IParticipantModels> ConferenceParticipants { get; }
|
|
}
|
|
}
|