using System.ComponentModel.DataAnnotations; namespace ApiPolo.Models { /// Tabella CHIAMATE (insert da app) per le installazioni di TaskManager public class ChiamateTableTaskManager { /// [Key] public string? chcodazi { get; set; } /// [Key] public string? chserial { get; set; } /// public string? chcodese { get; set; } /// public string? chtipo { get; set; } /// [System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(10, 0)")] public decimal? chnumero { get; set; } /// public DateTime? chdata { get; set; } /// public int? chora { get; set; } /// public int? chmin { get; set; } /// public int? chopins { get; set; } /// public int? chopass { get; set; } /// public int? chopchi { get; set; } /// public string? chcodimp { get; set; } /// public string? chaziimp { get; set; } /// public string? chtchiam { get; set; } /// public string? chtmanut { get; set; } /// public string? chstato { get; set; } /// public DateTime? chdtapp { get; set; } /// public int? choraapi { get; set; } /// public int? chminapi { get; set; } /// public int? choraapf { get; set; } /// public int? chminapf { get; set; } /// public string? chrifer { get; set; } /// public string? chtelef { get; set; } /// public string? chcodseg { get; set; } /// public string? chstopi { get; set; } /// public string? chnote { get; set; } /// public DateTime? chdtass { get; set; } /// public int? chorass { get; set; } /// public int? chminass { get; set; } /// public DateTime? chdtchi { get; set; } /// public int? chorachi { get; set; } /// public int? chminchi { get; set; } /// public DateTime? chdtlin { get; set; } /// public int? chorali { get; set; } /// public int? chminli { get; set; } /// public DateTime? chdtlfi { get; set; } /// public int? choralf { get; set; } /// public int? chminlf { get; set; } /// public string? chvalfat { get; set; } /// public string? cpccchk { get; set; } /// public int? chnrap1 { get; set; } /// public string? chsrap1 { get; set; } /// public int? chnrap2 { get; set; } /// public string? chsrap2 { get; set; } /// public string? chmodrac { get; set; } /// public int? chprgann { get; set; } /// public string? chserchi { get; set; } /// public string? chdesfat { get; set; } /// public string? chdessup { get; set; } /// [System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")] public decimal? chimpofa { get; set; } /// public string? chserdoc { get; set; } /// [System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")] public decimal? chimpmat { get; set; } /// [System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")] public decimal? chimpman { get; set; } /// [System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(6, 2)")] public decimal? chperman { get; set; } /// public string? chflstim { get; set; } /// public string? chfleste { get; set; } /// public string? chserext { get; set; } /// public string? chrifiutata { get; set; } ///// //public string? chincarico { get; set; } ///// //public string? chserweb { get; set; } ///// //public string? chinlinea { get; set; } ///// //public string? chpreinc { get; set; } /// campo cliente su tabella chiamate di TaskManager public string? cliente { get; set; } } }