Class IncidentLog
Описывает запись в журнале нештатной ситуации.
Inheritance
System.Object
IncidentLog
Namespace: Lers.Models
Assembly: Lers.Models.dll
Syntax
public class IncidentLog : object
Properties
Date
Дата и время записи сообщения.
Declaration
public DateTime Date { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Id
Уникальный идентификатор записи.
Declaration
public long Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
IncidentId
Идентификатор нештатной ситуации, к которой относится запись.
Declaration
public int IncidentId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
IncidentType
Тип нештатной ситуации.
Declaration
public IncidentType IncidentType { get; set; }
Property Value
Type | Description |
---|---|
IncidentType |
Message
Текст сообщения.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ShortMessage
Текст короткого сообщения для отображения в таблицах/графиках/отчетах и отправки по SMS.
Declaration
public string ShortMessage { get; set; }
Property Value
Type | Description |
---|---|
System.String |