init
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
|
||||
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 = "");
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 632 B |
Binary file not shown.
Reference in New Issue
Block a user