ModuleConflictsData.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using System; 6 using System.Collections.Generic; 7 using System.Linq; 8 using System.Text; 9 using System.Threading.Tasks; 10 11 namespace Microsoft.PowerToys.Settings.UI.Library.HotkeyConflicts 12 { 13 public class ModuleConflictsData 14 { 15 public List<HotkeyConflictGroupData> InAppConflicts { get; set; } = new List<HotkeyConflictGroupData>(); 16 17 public List<HotkeyConflictGroupData> SystemConflicts { get; set; } = new List<HotkeyConflictGroupData>(); 18 19 public bool HasConflicts => InAppConflicts.Count > 0 || SystemConflicts.Count > 0; 20 } 21 }