2018-08-20 14:19:18 -04:00
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using Filtration.ObjectModel.BlockItemBaseTypes;
|
|
|
|
|
|
|
|
|
|
namespace Filtration.ObjectModel.BlockItemTypes
|
|
|
|
|
{
|
|
|
|
|
public sealed class DisableDropSoundBlockItem : BooleanBlockItem, IAudioVisualBlockItem
|
|
|
|
|
{
|
|
|
|
|
public DisableDropSoundBlockItem()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DisableDropSoundBlockItem(bool booleanValue) : base(booleanValue)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string PrefixText => "DisableDropSound";
|
|
|
|
|
public override string DisplayHeading => "Disable Drop Sound";
|
|
|
|
|
public override Color SummaryBackgroundColor => Colors.Transparent;
|
|
|
|
|
public override Color SummaryTextColor => Colors.Transparent;
|
2018-08-29 13:12:02 -04:00
|
|
|
|
public override int SortOrder => 28;
|
2018-08-20 14:19:18 -04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|