/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/PowerAccentLanguageGroupModel.cs
19 строк
595 B
Sergey Chernyaev
[QuickAccent]Multi-language selection (#35539)
02 дек 2024, 18:21
Не верифицирован
02 дек 2024, 18:21
54aab5d
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; namespace Microsoft.PowerToys.Settings.UI.Library { public class PowerAccentLanguageGroupModel : List<PowerAccentLanguageModel> { public PowerAccentLanguageGroupModel(List<PowerAccentLanguageModel> languages, string group) : base(languages) { this.Group = group; } public string Group { get; init; } } }