17 lines
510 B
C#
17 lines
510 B
C#
namespace SytelineSaAppEfDataModel.Entities;
|
|
|
|
public class WzRowMareli
|
|
{
|
|
public Guid ID { get; set; }
|
|
public Guid? FKHeader { get; set; }
|
|
public string Type { get; set; }
|
|
public int? PalletNumber { get; set; }
|
|
public string ItemNumber { get; set; }
|
|
public string EngineerNumber { get; set; }
|
|
public int? Quantity { get; set; }
|
|
public string OrderNumber { get; set; }
|
|
public string WzNumber { get; set; }
|
|
|
|
// Navigation property
|
|
public WzHeader Header { get; set; }
|
|
} |