2018-08-20 14:19:18 -04:00
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using Filtration.ObjectModel.BlockItemBaseTypes;
|
2018-12-05 01:59:10 -05:00
|
|
|
|
using Filtration.ObjectModel.Enums;
|
2018-08-20 14:19:18 -04:00
|
|
|
|
|
|
|
|
|
namespace Filtration.ObjectModel.BlockItemTypes
|
|
|
|
|
{
|
2018-12-05 11:42:59 -05:00
|
|
|
|
public sealed class DisableDropSoundBlockItem : NilBlockItem, IAudioVisualBlockItem
|
2018-08-20 14:19:18 -04:00
|
|
|
|
{
|
2018-12-05 11:42:59 -05:00
|
|
|
|
public DisableDropSoundBlockItem() : base()
|
2018-08-20 14:19:18 -04:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string PrefixText => "DisableDropSound";
|
|
|
|
|
public override string DisplayHeading => "Disable Drop Sound";
|
2018-12-05 11:42:59 -05:00
|
|
|
|
public override string Description => "Default drop sound disabled.";
|
2018-08-20 14:19:18 -04:00
|
|
|
|
public override Color SummaryBackgroundColor => Colors.Transparent;
|
|
|
|
|
public override Color SummaryTextColor => Colors.Transparent;
|
2018-12-05 01:59:10 -05:00
|
|
|
|
public override BlockItemOrdering SortOrder => BlockItemOrdering.DisableDropSound;
|
2018-08-20 14:19:18 -04:00
|
|
|
|
}
|
|
|
|
|
}
|