15 lines
424 B
C#
15 lines
424 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace Yunda.SOMS.DataMonitoringServer.Viewport.Domain.Helper
|
|
{
|
|
public class BaseRaisePropertyChanged : INotifyPropertyChanged
|
|
{
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
public virtual Action<PropertyChangedEventArgs> RaisePropertyChanged()
|
|
{
|
|
return args => PropertyChanged?.Invoke(this, args);
|
|
}
|
|
}
|
|
} |