mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
13 lines
299 B
C#
13 lines
299 B
C#
using System.Windows;
|
|
|
|
namespace FeedCenter.Options;
|
|
|
|
public partial class AboutOptionsPanel
|
|
{
|
|
public AboutOptionsPanel(Window parentWindow) : base(parentWindow)
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public override string CategoryName => Properties.Resources.optionCategoryAbout;
|
|
} |