12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IChannelGRMSSummary : IBaseClass
|
||
|
|
{
|
||
|
|
string ChannelName { get; set; }
|
||
|
|
int SampleRate { get; set; }
|
||
|
|
double GRMS { get; set; }
|
||
|
|
}
|
||
|
|
}
|