/ src / modules / EnvironmentVariables / EnvironmentVariablesUILib / Models / DefaultVariablesSet.cs
DefaultVariablesSet.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 7 namespace EnvironmentVariablesUILib.Models 8 { 9 public class DefaultVariablesSet : VariablesSet 10 { 11 public DefaultVariablesSet(Guid id, string name, VariablesSetType type) 12 : base(id, name, type) 13 { 14 } 15 } 16 }