mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-25 02:36:20 +00:00
8 lines
160 B
C#
8 lines
160 B
C#
using System.ComponentModel;
|
|
|
|
namespace MediaBrowser.Model.Extensions
|
|
{
|
|
public interface IHasPropertyChangedEvent : INotifyPropertyChanged
|
|
{
|
|
}
|
|
}
|