namespace TravelAgencyDataModels.Models { public interface IExcursionGroupModel : IId { string ExcursionGroupName { get; } int ParticipantsAmount { get; } int UserId { get; } int GuideId { get; } Dictionary ExcursionGroupTours { get; } Dictionary ExcursionGroupPlaces { get; } } }