Files
console_spo_utils/library_spo_utils/Model/SubProj.cs
T
2023-06-21 10:38:57 +02:00

16 lines
459 B
C#

namespace library_spo_utils.Model
{
internal class SubProj
{
public string ProjId { get; set; }
public string Description { get; set; }
public string Customer { get; set; }
public string DeliveryReason { get; set; }
public string Position { get; set; }
public string ItemCode { get; set; }
public string ItemDescription { get; set; }
public string SerialNumber { get; set; }
}
}