12 lines
181 B
C#
12 lines
181 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
|
||
|
|
namespace TournamentOrganizer.Views;
|
||
|
|
|
||
|
|
public partial class EventsView : UserControl
|
||
|
|
{
|
||
|
|
public EventsView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|