namespace RadeonResetBugFixService.Contracts { using System.Collections.Generic; class DevicesStatus { public List EnabledDevices { get; } = new List(); public List DisabledDevices { get; } = new List(); } }