using FoodLabeling.Application.Contracts.Dtos.Common; namespace FoodLabeling.Application.Contracts.Dtos.Training; public class TrainingFileScopeInputVo : ITrainingFileScopeInput { public string? AppliedPartnerType { get; set; } public List? PartnerIds { get; set; } public List? CompanyIds { get; set; } /// 适用 Region:ALL / SPECIFIED public string? AppliedRegionType { get; set; } public List? RegionIds { get; set; } public List? GroupIds { get; set; } /// 适用 Location:ALL / SPECIFIED public string? AvailabilityType { get; set; } /// 适用 Location:ALL / SPECIFIED( 别名) public string? AppliedLocationType { get; set; } public List? LocationIds { get; set; } }