namespace FoodLabeling.Application.Contracts.Dtos.Training; public class TrainingFileScopeOutputDto { public string AppliedPartnerType { get; set; } = "ALL"; public string Company { get; set; } = string.Empty; public List PartnerIds { get; set; } = new(); public List CompanyIds { get; set; } = new(); public string AppliedRegionType { get; set; } = "ALL"; public string Region { get; set; } = string.Empty; public List RegionIds { get; set; } = new(); public List GroupIds { get; set; } = new(); public string AvailabilityType { get; set; } = "ALL"; public string Location { get; set; } = string.Empty; public List LocationIds { get; set; } = new(); }