namespace FoodLabeling.Application.Contracts.Dtos.Label; public class LabelUpdateInputVo { public string LabelName { get; set; } = string.Empty; public string TemplateCode { get; set; } = string.Empty; public string? PartnerId { get; set; } public List? PartnerIds { get; set; } public List? RegionIds { get; set; } public List? GroupIds { get; set; } public string? LocationId { get; set; } public List? LocationIds { get; set; } public string LabelCategoryId { get; set; } = string.Empty; public string LabelTypeId { get; set; } = string.Empty; public List ProductIds { get; set; } = new(); public object? LabelInfoJson { get; set; } public bool State { get; set; } = true; }