Ancora update x test KIT

This commit is contained in:
Samuele Locatelli
2025-04-10 19:51:33 +02:00
parent d344b49ff0
commit 44c98a29d9
16 changed files with 225 additions and 40 deletions
+45
View File
@@ -0,0 +1,45 @@
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;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DbModels
{
/// <summary>
/// Classe gestione item risposta selezione stored ricerca compatibilità KIT
/// </summary>
public class TksScoreModel
{
#region Public Properties
/// <summary>
/// Codice Articolo Parent
/// </summary>
[Key, MaxLength(50)]
public string CodArtParent { get; set; } = "";
/// <summary>
/// Numero Cicli Associati
/// </summary>
public int ChildFound { get; set; } = 0;
/// <summary>
/// Score Cicli Associati
/// </summary>
public double ChildScore { get; set; } = 0;
/// <summary>
/// Score complessivo
/// </summary>
public double TotalScore { get; set; } = 0;
#endregion Public Properties
}
}