PowerAccentLanguageGroupModel.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.Collections.Generic; 6 7 namespace Microsoft.PowerToys.Settings.UI.Library 8 { 9 public class PowerAccentLanguageGroupModel : List<PowerAccentLanguageModel> 10 { 11 public PowerAccentLanguageGroupModel(List<PowerAccentLanguageModel> languages, string group) 12 : base(languages) 13 { 14 this.Group = group; 15 } 16 17 public string Group { get; init; } 18 } 19 }