24 lines
711 B
C#
24 lines
711 B
C#
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;
|
|
|
|
public int IdxPodlParent { get; set; } = 0;
|
|
public int IdxPodlChild { get; set; } = 0;
|
|
}
|
|
}
|