mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
11 lines
226 B
C#
11 lines
226 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace ServerManagerTool.Plugin.Discord
|
|
{
|
|
public class ComboBoxItemList : ObservableCollection<ComboBoxItem>
|
|
{
|
|
public ComboBoxItemList()
|
|
{
|
|
}
|
|
}
|
|
}
|