init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using DTS.Common.Interface;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Classes.Viewer.Reports
|
||||
{
|
||||
public class ChannelGRMSSummary : IChannelGRMSSummary
|
||||
{
|
||||
public string ChannelName { get; set; }
|
||||
public int SampleRate { get; set; }
|
||||
public double GRMS { get; set; }
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
public void OnPropertyChanged(string propertyName)
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user