init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user