14 lines
296 B
C#
14 lines
296 B
C#
using Avalonia.Controls;
|
|
|
|
namespace LehrerApp.Desktop.Views.Students;
|
|
|
|
public partial class StudentListView : UserControl
|
|
{
|
|
public StudentListView() => InitializeComponent();
|
|
}
|
|
|
|
public partial class StudentDetailView : UserControl
|
|
{
|
|
public StudentDetailView() => InitializeComponent();
|
|
}
|