12 lines
209 B
C#
12 lines
209 B
C#
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
using MpvNet.Windows.UI;
|
|
|
|
namespace MpvNet.Windows.WPF.ViewModels;
|
|
|
|
public class ViewModelBase : ObservableObject
|
|
{
|
|
public Theme Theme => Theme.Current!;
|
|
}
|