using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // public partial class ParetoRegAttModel { [Key] public long RowNum { get; set; } = 0; public string nomeComm { get; set; } = ""; public int idxFaseComm { get; set; } = 0; public int idxFase { get; set; } = 0; public string nomeProj { get; set; } = ""; public string nomeFase { get; set; } = ""; public decimal freq { get; set; } = 0; public decimal qty { get; set; } = 0; public int tot{ get; set; } = 0; } }