mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Introduce ITypeSchemaWithInternalType
This commit is contained in:
@@ -12,7 +12,7 @@ using System.Reflection;
|
|||||||
|
|
||||||
namespace Microsoft.Iris.Markup
|
namespace Microsoft.Iris.Markup
|
||||||
{
|
{
|
||||||
internal class AssemblyTypeSchema : TypeSchema
|
internal class AssemblyTypeSchema : TypeSchema, ITypeSchemaWithInternalType
|
||||||
{
|
{
|
||||||
private Type _type;
|
private Type _type;
|
||||||
private TypeSchema _baseType;
|
private TypeSchema _baseType;
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Microsoft.Iris.Markup;
|
||||||
|
|
||||||
|
public interface ITypeSchemaWithInternalType
|
||||||
|
{
|
||||||
|
Type InternalType { get; }
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user