using System.ComponentModel.DataAnnotations; // // 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; } }