19 lines
563 B
Plaintext
19 lines
563 B
Plaintext
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));
|
|
}
|
|
}
|
|
}
|