using System.Windows.Controls;
namespace HC_APTBS.Views.UserControls
{
///
/// Soft safety interlock banner rendered on the Bench page.
/// Shows when oil-pump interlock or RPM-over-limit conditions are active;
/// the operator can dismiss it until the condition changes.
///
public partial class InterlockBannerView : UserControl
{
/// Initializes a new instance of the control.
public InterlockBannerView()
{
InitializeComponent();
}
}
}