Files
laatzen/LaaProductionWeb/LaaProduction.Services/Models/MissingItem.cs
T

22 lines
420 B
C#

namespace LaaProduction.Services.Models
{
using System;
public class MissingItem
{
public DateTime EntryDate { get; set; }
public Int32 OrderNr { get; set; }
public Int32 PosNr { get; set; }
public Int32 SerialNr { get; set; }
public String CustomSerial { get; set; }
public String Term { get; set; }
public String Type { get; set; }
}
}