16 lines
310 B
C#
16 lines
310 B
C#
using System.Windows.Forms;
|
|
|
|
namespace OwnChar.App.Desktop.UI.MainTabs.Controls;
|
|
|
|
public partial class GroupListControl : UserControl
|
|
{
|
|
public GroupListControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
// Auflistung der Gruppen
|
|
// Hinzufügen
|
|
// Löschen + Umbenennen (Wenn Admin/Mod)
|
|
}
|