2024-04-27 23:49:22 +04:00
|
|
|
|
using TravelAgencyDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace TravelAgencyContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ExcursionGroupBindingModel : IExcursionGroupModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ExcursionGroupName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int ParticipantsAmount { get; set; }
|
|
|
|
|
|
|
|
|
|
public int UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int GuideId { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<int, ITourModel> ExcursionGroupTours { get; set; } = new();
|
2024-05-29 13:06:49 +04:00
|
|
|
|
|
|
|
|
|
public Dictionary<int, IPlaceModel> ExcursionGroupPlaces { get; set; } = new();
|
2024-04-27 23:49:22 +04:00
|
|
|
|
}
|
|
|
|
|
}
|