mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 09:58:53 -05:00
19 lines
327 B
C#
19 lines
327 B
C#
using System.Windows.Controls;
|
|
|
|
namespace FeedCenter.Options;
|
|
|
|
public class OptionsPanelBase : UserControl
|
|
{
|
|
public bool HasLoaded { get; private set; }
|
|
|
|
public virtual void LoadPanel()
|
|
{
|
|
}
|
|
|
|
public void MarkLoaded()
|
|
{
|
|
HasLoaded = true;
|
|
}
|
|
|
|
public virtual string CategoryName => null;
|
|
} |