#region Using declarations
using System;
#endregion
namespace IvAttributes
{
public class IvShowHideAttribute : Attribute
{
public string PropertyName {get;private set;}
public string PropertyResult {get;private set;}
public IvShowHideAttribute(string PropertyName, string PropertyResult)
{
this.PropertyName = PropertyName;
this.PropertyResult = PropertyResult;
}
}
public class DisableIfEnabledAttribute : Attribute
{
public string PropertyName { get;private set;}
public DisableIfEnabledAttribute(string PropertyName)
{
this.PropertyName = PropertyName;
}
}
}
Editor is loading...