9 lines
160 B
C#
9 lines
160 B
C#
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace MediaBrowser.Model.Extensions
|
|||
|
{
|
|||
|
public interface IHasPropertyChangedEvent : INotifyPropertyChanged
|
|||
|
{
|
|||
|
}
|
|||
|
}
|