using System.Collections.Generic;
namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;
///
/// App 打印出参(接口 9 / 11)
///
public class UsAppLabelPrintOutputDto
{
public string TaskId { get; set; } = string.Empty;
public int PrintQuantity { get; set; }
public string? BatchId { get; set; }
public List TaskIds { get; set; } = new();
}