Fixed removed constructor that was needed for IDEs

This commit is contained in:
2018-12-07 14:05:17 +01:00
parent e48a89e70d
commit 97968ef491

View File

@@ -17,6 +17,15 @@ namespace Upsilon.BoundTypes
Name = backingType.Name;
}
public UserDataBoundTypeDefinition(string name, Dictionary<string, UserDataBoundProperty> backingType)
: base(Type.UserData, typeof(void))
{
Name = name;
Properties = backingType;
}
public static UserDataBoundTypeDefinition Create(System.Type backingType)
{
var obj = new UserDataBoundTypeDefinition(backingType)