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