using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace NKC.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("PrintJobQueue")] public partial class PrintJobQueue { public int IdxPrintJob { get; set; } public string TipoReport { get; set; } = null!; public string KeyParam { get; set; } = null!; public string PrtName { get; set; } = null!; public DateTime DtStart { get; set; } public DateTime? DtEnd { get; set; } public int Stato { get; set; } public DateTime? DtLastTry { get; set; } } }