15 lines
452 B
C#
15 lines
452 B
C#
using System.Windows.Controls;
|
|
|
|
namespace HC_APTBS.Views.UserControls
|
|
{
|
|
/// <summary>
|
|
/// Pump identification and K-Line ECU info display.
|
|
/// DataContext is <see cref="HC_APTBS.ViewModels.PumpIdentificationViewModel"/>.
|
|
/// </summary>
|
|
public partial class PumpIdentificationView : UserControl
|
|
{
|
|
/// <summary>Initialises the component.</summary>
|
|
public PumpIdentificationView() => InitializeComponent();
|
|
}
|
|
}
|