update directory name and access visibility
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
namespace console_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; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace console_spo_utils.Model
|
||||
{
|
||||
internal class TokenWaitInfo
|
||||
{
|
||||
internal RegisteredWaitHandle Handle = null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user