using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { /// /// Classe gestione item risposta selezione stored ricerca compatibilità KIT /// public class TksScoreModel { /// /// Codice Articolo Parent /// [Key, MaxLength(50)] public string CodArtParent { get; set; } = ""; /// /// Numero Cicli Associati /// public int ChildFound { get; set; } = 0; /// /// Score Cicli Associati /// public decimal ChildScore { get; set; } = 0; /// /// Score complessivo /// public decimal TotalScore { get; set; } = 0; } }