12 lines
195 B
C#
12 lines
195 B
C#
using System.Windows.Controls;
|
|
|
|
namespace WeddingBooth.Views;
|
|
|
|
public partial class SeatingChartView : UserControl
|
|
{
|
|
public SeatingChartView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|