mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 21:35:42 +01:00
8 lines
160 B
C#
8 lines
160 B
C#
using System.ComponentModel;
|
|
|
|
namespace MediaBrowser.Model.Extensions
|
|
{
|
|
public interface IHasPropertyChangedEvent : INotifyPropertyChanged
|
|
{
|
|
}
|
|
}
|