Files
DP44/Common/DTS.Common/.svn/pristine/3c/3ca236dafd2c4f0906f926402ff7aee836553d41.svn-base

22 lines
611 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
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();
}
}