mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-08 22:24:59 -05:00
15 lines
336 B
C#
15 lines
336 B
C#
using System.ComponentModel.Composition;
|
|
using System.Windows;
|
|
|
|
namespace MediaBrowser.Plugins.DefaultTheme.Resources
|
|
{
|
|
[Export(typeof(ResourceDictionary))]
|
|
public partial class AppResources : ResourceDictionary
|
|
{
|
|
public AppResources()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|