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