mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Move DataMappingModel and DecompilationResult to own files and into Debug.Data namespace
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Xml;
|
||||
|
||||
namespace Microsoft.Iris.Debug.Data;
|
||||
|
||||
public class DecompilationResult
|
||||
{
|
||||
internal DecompilationResult(string context, XmlDocument doc)
|
||||
{
|
||||
Context = context;
|
||||
Doc = doc;
|
||||
}
|
||||
|
||||
public string Context { get; private set; }
|
||||
public XmlDocument Doc { get; private set; }
|
||||
}
|
||||
Reference in New Issue
Block a user