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
|
|
|
|
{
|
2017-12-07 06:49:25 -05:00
|
|
|
|
public class SoundBlockItem : StrIntBlockItem
|
2015-06-04 18:15:54 +01:00
|
|
|
|
{
|
|
|
|
|
public SoundBlockItem()
|
|
|
|
|
{
|
2017-12-07 06:49:25 -05:00
|
|
|
|
Value = "1";
|
2015-06-04 18:15:54 +01:00
|
|
|
|
SecondValue = 79;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-07 06:49:25 -05:00
|
|
|
|
public SoundBlockItem(string value, int secondValue) : base(value, secondValue)
|
2015-06-04 18:15:54 +01:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-13 20:17:15 +00:00
|
|
|
|
public override string PrefixText => "PlayAlertSound";
|
|
|
|
|
public override int MaximumAllowed => 1;
|
|
|
|
|
public override string DisplayHeading => "Play Alert Sound";
|
2018-08-12 11:15:45 +03:00
|
|
|
|
public override int SortOrder => 25;
|
2015-06-04 18:15:54 +01:00
|
|
|
|
}
|
|
|
|
|
}
|