LabelCreateInputVo.cs 597 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Label;

public class LabelCreateInputVo
{
    public string? LabelCode { get; set; }

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

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

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

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

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

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

    public object? LabelInfoJson { get; set; }

    public bool State { get; set; } = true;
}