using System;
|
using System.Collections.Generic;
|
|
namespace Bro.Common.Interface
|
{
|
public interface IWarningSetCollection
|
{
|
List<IWarningSet> WarningSetCollection { get; set; }
|
|
List<IWarningSet> GetAllWarningSet();
|
}
|
|
public interface IWarningSet
|
{
|
string Id { get; set; }
|
|
string Name { get; set; }
|
|
string DisplayText { get; }
|
|
bool TriggerValue { get; set; }
|
|
string WarningCode { get; set; }
|
|
string WarningDescription { get; set; }
|
|
int WarningLvl { get; set; }
|
|
bool CurrentStatus { get; set; }
|
|
string Source { get; set; }
|
|
DateTime TriggerTime { get; set; }
|
|
}
|
}
|