14 lines
235 B
C#
14 lines
235 B
C#
using Avalonia.Controls;
|
|
using PropertyChanged;
|
|
|
|
namespace KingPing;
|
|
|
|
[DoNotNotify]
|
|
public partial class DigitalOutputCollectionView : UserControl
|
|
{
|
|
public DigitalOutputCollectionView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|