18 lines
384 B
C#
18 lines
384 B
C#
namespace TravelAgencyDataModels.Models
|
|
{
|
|
public interface IExcursionGroupModel : IId
|
|
{
|
|
string ExcursionGroupName { get; }
|
|
|
|
int ParticipantsAmount { get; }
|
|
|
|
int UserId { get; }
|
|
|
|
int GuideId { get; }
|
|
|
|
Dictionary<int, ITourModel> ExcursionGroupTours { get; }
|
|
|
|
Dictionary<int, IPlaceModel> ExcursionGroupPlaces { get; }
|
|
}
|
|
}
|