Start adding server support

This commit is contained in:
2025-09-24 21:08:59 -04:00
parent 9e2e7aabe8
commit 4e721efa55
47 changed files with 1652 additions and 266 deletions

View File

@@ -6,10 +6,12 @@ namespace FeedCenter.Options;
public class OptionsPanelBase : UserControl
{
protected readonly Window ParentWindow;
protected readonly FeedCenterEntities Entities;
protected OptionsPanelBase(Window parentWindow)
protected OptionsPanelBase(Window parentWindow, FeedCenterEntities entities)
{
ParentWindow = parentWindow;
Entities = entities;
}
public virtual string CategoryName => null;