|
|
@@ -1,11 +1,10 @@ |
|
|
|
using System; |
|
|
|
|
|
|
|
using System.Reflection; |
|
|
|
|
|
|
|
namespace Discord.Commands |
|
|
|
{ |
|
|
|
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)] |
|
|
|
public class OverrideTypeReaderAttribute : Attribute |
|
|
|
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Property, AllowMultiple = false, Inherited = true)] |
|
|
|
public sealed class OverrideTypeReaderAttribute : Attribute |
|
|
|
{ |
|
|
|
private static readonly TypeInfo _typeReaderTypeInfo = typeof(TypeReader).GetTypeInfo(); |
|
|
|
|
|
|
|