15 lines
287 B
C#
15 lines
287 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class Kit
|
|
{
|
|
public string KeyKit { get; set; }
|
|
public string KeyExtOrd { get; set; }
|
|
public string CodArtParent { get; set; }
|
|
}
|
|
}
|