22 lines
614 B
Plaintext
22 lines
614 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
using DTS.Common.Enums.Sensors;
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface.Sensors.SoftwareFilters
|
||
|
|
{
|
||
|
|
public interface ISoftwareFiltersView : IBaseView { }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// FB 13120 Filter class interface
|
||
|
|
/// </summary>
|
||
|
|
[System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ExpandableObjectConverter))]
|
||
|
|
public interface IFilterClass : IComparable
|
||
|
|
{
|
||
|
|
string FilterName { get; }
|
||
|
|
FilterClassType FClass { get; set; }
|
||
|
|
double Frequency { get; set; }
|
||
|
|
int GetFilterClassNumericValue();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|