/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/EnvironmentVariables/EnvironmentVariablesUILib/Models/DefaultVariablesSet.cs
16 строк
448 B
Stefan Markovic
[EnvVar][Hosts][RegPrev]Decouple and refactor to make it "packable" as nuget package (#32604)
26 апр 2024, 20:41
Не верифицирован
26 апр 2024, 20:41
41a0114
Код
Авторство
О чём код?
// 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; namespace EnvironmentVariablesUILib.Models { public class DefaultVariablesSet : VariablesSet { public DefaultVariablesSet(Guid id, string name, VariablesSetType type) : base(id, name, type) { } } }