Files
mapo-core/MP.Data/DbModels/IstanzeKitModel.cs
T
Samuele Locatelli 28c4adff0d SPEC:
Aggiunta modello dati x KIT : istanze e template
2025-04-09 13:03:21 +02:00

23 lines
655 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace MP.Data.DbModels
{
[Table("IstanzeKit")]
public partial class IstanzeKitModel
{
[MaxLength(50)]
public string KeyKit { get; set; } = "";
[MaxLength(50)]
public string KeyExtOrd { get; set; } = "";
[MaxLength(50)]
public string CodArtParent { get; set; } = "";
[MaxLength(50)]
public string CodArtChild { get; set; } = "";
public int QtyKIT { get; set; } = 1;
public int QtyART { get; set; } = 1;
}
}