Files
DP44/Common/DTS.CommonCore/.svn/pristine/c8/c841280462745795815437ad70b957c51a15bccf.svn-base

18 lines
348 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.Enums.Sensors
{
/// <summary>
/// describes different ways of filtering channels and sensors by type
/// </summary>
public enum PossibleFilters
{
All,
Analog,
Squib,
DigitalIn,
DigitalOut,
UART,
StreamOut,
StreamIn
}
}