mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
16 lines
319 B
C#
16 lines
319 B
C#
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; }
|
|
}
|