Downgrade to C# 5 - move auto-property initializer to constructor

This commit is contained in:
2026-04-22 09:50:40 +10:00
parent 0bc94c542c
commit 5f66dac6b0
+6 -1
View File
@@ -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>();
}
}
}