21 lines
578 B
Plaintext
21 lines
578 B
Plaintext
|
|
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 = "");
|
|
}
|
|
}
|