mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-24 01:08:21 -05:00
16 lines
385 B
C#
16 lines
385 B
C#
using System;
|
|
|
|
namespace TriInspector
|
|
{
|
|
public abstract class TriPropertyDisableProcessor
|
|
{
|
|
internal Attribute RawAttribute { get; set; }
|
|
|
|
public abstract bool IsDisabled(TriProperty property);
|
|
}
|
|
|
|
public abstract class TriPropertyDisableProcessor<TAttribute> : TriPropertyDisableProcessor
|
|
where TAttribute : DisableBaseAttribute
|
|
{
|
|
}
|
|
} |