Files
FA_WEB/SytelineSaAppEfDataModel/Entities/WzRowMarelli.cs

19 lines
599 B
C#

namespace SytelineSaAppEfDataModel.Entities;
public class WzRowMarelli
{
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; }
public string FaIndex { get; set; }
public int? TransactionNumber { get; set; }
// Navigation property
public WzHeader Header { get; set; }
}