12 lines
325 B
C#
12 lines
325 B
C#
namespace console_spo_utils.Model
|
|
{
|
|
internal class ParentProj
|
|
{
|
|
public string ProjId { get; set; }
|
|
public string Description { get; set; }
|
|
public string Customer { get; set; }
|
|
public string DeliveryReason { get; set; }
|
|
public List<SubProj> SubProjects { get; set; }
|
|
}
|
|
}
|