Filtration/Filtration.ObjectModel/Enums/BlockAction.cs

13 lines
203 B
C#
Raw Normal View History

2015-06-04 13:15:54 -04:00
using System.ComponentModel;
2015-06-24 14:57:16 -04:00
namespace Filtration.ObjectModel.Enums
2015-06-04 13:15:54 -04:00
{
2015-06-24 14:57:16 -04:00
public enum BlockAction
2015-06-04 13:15:54 -04:00
{
[Description("Show")]
Show,
[Description("Hide")]
Hide
}
}