Ancora update x test KIT
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user