Move DataMappingModel and DecompilationResult to own files and into Debug.Data namespace

This commit is contained in:
Yoshi Askharoun
2023-05-24 20:02:31 -05:00
parent 39325d470c
commit aa2257bf8e
3 changed files with 42 additions and 45 deletions
@@ -0,0 +1,15 @@
namespace Microsoft.Iris.Debug.Data;
public class DataMappingModel
{
public DataMappingModel(string provider, string type, string generatedCode)
{
Provider = provider;
Type = type;
GeneratedCode = generatedCode;
}
public string Provider { get; internal set; }
public string Type { get; internal set; }
public string GeneratedCode { get; internal set; }
}
@@ -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; }
}