12 lines
148 B
C#
12 lines
148 B
C#
using System;
|
|
|
|
namespace Zenject
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class ValidateOnlyAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
|
|
|