VariablesSetType.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 namespace EnvironmentVariablesUILib.Models 6 { 7 public enum VariablesSetType 8 { 9 Path = 0, 10 Duplicate, 11 Profile, 12 User, 13 System, 14 } 15 }