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 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user