12 lines
216 B
C#
12 lines
216 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
|
|
namespace Prise
|
|
{
|
|
public interface IAssemblyShim
|
|
{
|
|
Assembly Assembly { get; }
|
|
IEnumerable<Type> Types { get; }
|
|
}
|
|
} |