Files
DP44/Common/DTS.CommonCore/.svn/pristine/d2/d28086307d4a6c470c71cd5cc079ec619be1b3c0.svn-base

21 lines
577 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 = "");
}
}