Downgrade to C# 5 - move auto-property initializer to constructor
This commit is contained in:
@@ -30,6 +30,11 @@ namespace Disco.Plugins.ADCompare.Models
|
||||
public int DevicesNoAssignment { get; set; }
|
||||
public int DevicesNoManagedBy { get; set; }
|
||||
public int DevicesADDisabled { get; set; }
|
||||
public List<DeviceComparisonResult> Results { get; set; } = new List<DeviceComparisonResult>();
|
||||
public List<DeviceComparisonResult> Results { get; set; }
|
||||
|
||||
public DeviceComparisonSummary()
|
||||
{
|
||||
Results = new List<DeviceComparisonResult>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user