sharp-extensions/IConstructorArguments.cs

9 lines
132 B
C#
Raw Normal View History

2017-11-23 13:06:39 +01:00
using System;
namespace sharp.extensions
{
public interface IConstructorArguments
{
object[] getConstructorArguments();
}
}