Crunchy-Downloader/CRD/ViewModels/ViewModelBase.cs
Elwador 90ee2221cb Add - Added Dub & Sub override to history series and seasons
Add - Timing Sync - to sync dubs to the video
Chg - History Lang is now default language for episode title, description...
Chg - Renamed "Fetch Series" to "Refresh Series" to prevent confusion
Fix - Fixed Crash with search when episodes had X.X numbering
2024-07-17 01:52:46 +02:00

13 lines
376 B
C#

using System;
using System.ComponentModel;
using CommunityToolkit.Mvvm.ComponentModel;
namespace CRD.ViewModels;
public class ViewModelBase : ObservableObject{
public event PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propName){
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propName));
}
}