FlLabelTemplateLocationDbEntity.cs 375 Bytes
using SqlSugar;

namespace FoodLabeling.Application.Services.DbModels;

[SugarTable("fl_label_template_location")]
public class FlLabelTemplateLocationDbEntity
{
    [SugarColumn(IsPrimaryKey = true)]
    public string Id { get; set; } = string.Empty;

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

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