Files
DP44/Common/DTS.Common/.svn/pristine/6e/6e6c7d8c8e122adfa7e31661a351483bd40806eb.svn-base

21 lines
578 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00

using System;
namespace DTS.Common.Interface.Sensors
{
public interface ISoftwareFilter
{
int Id { get; set; }
char ISOCode { get; set; }
string Description { get; set; }
double Frequency { get; set; }
DateTime LastModified { get; set; }
string LastModifiedBy { get; set; }
//FB 13120 determine if the software filter is default
bool IsDefault { get; set; }
bool IsBlank();
void Delete();
void Commit(bool updateDateTime = true, string user = "");
}
}