using Microsoft.EntityFrameworkCore; 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 /// [Precision(18, 6)] public decimal ChildScore { get; set; } = 0; /// /// Score complessivo /// [Precision(18, 6)] public decimal TotalScore { get; set; } = 0; } }