28c4adff0d
Aggiunta modello dati x KIT : istanze e template
18 lines
460 B
C#
18 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Table("TemplateKit")]
|
|
public partial class TemplateKitModel
|
|
{
|
|
[MaxLength(50)]
|
|
public string CodArtParent { get; set; } = "";
|
|
[MaxLength(50)]
|
|
public string CodArtChild { get; set; } = "";
|
|
public int Qty { get; set; } = 1;
|
|
}
|
|
}
|