41 lines
829 B
C#
Raw Normal View History

2015-06-24 19:57:16 +01:00
using Filtration.ObjectModel.BlockItemBaseTypes;
2015-06-04 18:15:54 +01:00
2015-06-24 19:57:16 +01:00
namespace Filtration.ObjectModel.BlockItemTypes
2015-06-04 18:15:54 +01:00
{
2015-06-24 19:57:16 +01:00
public class SoundBlockItem : DualIntegerBlockItem
2015-06-04 18:15:54 +01: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; }
}
}
}