2024-04-21 20:05:55 +04:00

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; }
}
}