Files
mapo-core/MP.Data/DbModels/TksScoreModel.cs
T
Samuele Locatelli 9055eaf73c SPEC:
- aggiunta pagina operatori
- completato fix
2026-06-03 18:05:59 +02:00

38 lines
991 B
C#

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