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

22 lines
414 B
C#

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