Filtration/Filtration.ObjectModel/BlockItemTypes/SoundBlockItem.cs

41 lines
829 B
C#
Raw Normal View History

2015-06-24 14:57:16 -04:00
using Filtration.ObjectModel.BlockItemBaseTypes;
2015-06-04 13:15:54 -04:00
2015-06-24 14:57:16 -04:00
namespace Filtration.ObjectModel.BlockItemTypes
2015-06-04 13:15:54 -04:00
{
2015-06-24 14:57:16 -04:00
public class SoundBlockItem : DualIntegerBlockItem
2015-06-04 13:15:54 -04:00
{
public SoundBlockItem()
{
Value = 1;
SecondValue = 79;
}
public SoundBlockItem(int value, int secondValue) : base(value, secondValue)
{
}
public override string PrefixText
{
get { return "PlayAlertSound"; }
}
public override int MaximumAllowed
{
get { return 1; }
}
public override string DisplayHeading
{
get
{
return "Play Alert Sound";
}
}
public override int SortOrder
{
get { return 16; }
}
}
}