TrainingFileScopeOutputDto.cs 748 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Training;

public class TrainingFileScopeOutputDto
{
    public string AppliedPartnerType { get; set; } = "ALL";

    public string Company { get; set; } = string.Empty;

    public List<string> PartnerIds { get; set; } = new();

    public List<string> CompanyIds { get; set; } = new();

    public string AppliedRegionType { get; set; } = "ALL";

    public string Region { get; set; } = string.Empty;

    public List<string> RegionIds { get; set; } = new();

    public List<string> GroupIds { get; set; } = new();

    public string AvailabilityType { get; set; } = "ALL";

    public string Location { get; set; } = string.Empty;

    public List<string> LocationIds { get; set; } = new();
}