Introduce ITypeSchemaWithInternalType

This commit is contained in:
Yoshi Askharoun
2025-01-28 00:31:57 -06:00
parent 5fa6a3b202
commit 550f8b6771
2 changed files with 9 additions and 1 deletions
@@ -12,7 +12,7 @@ using System.Reflection;
namespace Microsoft.Iris.Markup
{
internal class AssemblyTypeSchema : TypeSchema
internal class AssemblyTypeSchema : TypeSchema, ITypeSchemaWithInternalType
{
private Type _type;
private TypeSchema _baseType;
@@ -0,0 +1,8 @@
using System;
namespace Microsoft.Iris.Markup;
public interface ITypeSchemaWithInternalType
{
Type InternalType { get; }
}