18 lines
324 B
C#
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;}
|
|
}
|
|
}
|
|
|
|
|