Files
Varanus/src/NOCQ/Model/Alert.cs
2014-05-07 13:34:13 -07:00

18 lines
324 B
C#

using System;
namespace NOCQ
{
public class Alert : IAlert
{
public DateTime TimeStamp {get; set;}
public string Source {get;set;}
public string System {get;set;}
public string Service {get;set;}
public string Data {get;set;}
public string Runbook {get; set;}
public string Severity {get;set;}
}
}