2018-08-27 15:43:01 -04:00
|
|
|
|
using Filtration.ObjectModel.BlockItemBaseTypes;
|
2018-12-05 01:59:10 -05:00
|
|
|
|
using Filtration.ObjectModel.Enums;
|
2018-08-27 15:43:01 -04:00
|
|
|
|
|
|
|
|
|
namespace Filtration.ObjectModel.BlockItemTypes
|
|
|
|
|
{
|
|
|
|
|
public class CustomSoundBlockItem : StringBlockItem
|
|
|
|
|
{
|
|
|
|
|
public CustomSoundBlockItem()
|
|
|
|
|
{
|
2018-08-29 06:11:41 -04:00
|
|
|
|
Value = "placeholder.mp3";
|
2018-08-27 15:43:01 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CustomSoundBlockItem(string value) : base(value)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string PrefixText => "CustomAlertSound";
|
|
|
|
|
public override int MaximumAllowed => 1;
|
|
|
|
|
public override string DisplayHeading => "Custom Alert Sound";
|
2018-12-05 01:59:10 -05:00
|
|
|
|
public override BlockItemOrdering SortOrder => BlockItemOrdering.CustomAlertSound;
|
2018-08-27 15:43:01 -04:00
|
|
|
|
}
|
|
|
|
|
}
|