Files

35 lines
900 B
C#

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>
public decimal ChildScore { get; set; } = 0;
/// <summary>
/// Score complessivo
/// </summary>
public decimal TotalScore { get; set; } = 0;
}
}