/ src / modules / Workspaces / WorkspacesEditor / Utils / ParsingResult.cs
ParsingResult.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 WorkspacesEditor.Utils
 6  {
 7      public readonly struct ParsingResult(bool result, string message = "", string data = "")
 8      {
 9          public bool Result { get; } = result;
10  
11          public string Message { get; } = message;
12  
13          public string MalformedData { get; } = data;
14      }
15  }