using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [Table("FLProcSetup")] public partial class FLProcSetupModel { #region Public Properties [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int IdxFLProc { get; set; } = 0; public int ProcOrder { get; set; } = 0; public string IdxMacchina { get; set; } = ""; public string CodOp { get; set; } = ""; public string CodFluxOut { get; set; } = ""; public string CodVar01 { get; set; } = ""; public string CodVar02 { get; set; } = ""; public string CodVar03 { get; set; } = ""; public string CodVar04 { get; set; } = ""; public string CodVar05 { get; set; } = ""; public bool Enabled { get; set; } = true; #endregion Public Properties } }