SeverityLevel.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 // <summary> 6 // Logging. 7 // </summary> 8 // <history> 9 // 2008 created by Truong Do (ductdo). 10 // 2009-... modified by Truong Do (TruongDo). 11 // 2023- Included in PowerToys. 12 // </history> 13 namespace MouseWithoutBorders.Class 14 { 15 internal class SeverityLevel 16 { 17 internal static readonly SeverityLevel Information = new SeverityLevel(); 18 internal static readonly SeverityLevel Error = new SeverityLevel(); 19 internal static readonly SeverityLevel Warning = new SeverityLevel(); 20 } 21 }