Class NotificationLog
Лог для отправленных операций
Inherited Members
Namespace: NotifyHub.NotificationService.Domain.Entities
Assembly: NotifyHub.NotificationService.Domain.dll
Syntax
public class NotificationLog : BaseEntity
Properties
| Edit this page View SourceDescription
Описание уведомления
Declaration
public required string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Почта пользователя
Declaration
public string? Email { get; set; }
Property Value
Type | Description |
---|---|
string |
ErrorMessage
Сообщение об ошибке (при наличии)
Declaration
public string? ErrorMessage { get; set; }
Property Value
Type | Description |
---|---|
string |
NotificationId
Id уведомления
Declaration
public required Guid NotificationId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
SentAt
Во сколько было отправлено
Declaration
public DateTime SentAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Status
Статус операции
Declaration
public OperationStatus Status { get; set; }
Property Value
Type | Description |
---|---|
OperationStatus |
TelegramId
ID пользователя в Telegram
Declaration
public required long TelegramId { get; set; }
Property Value
Type | Description |
---|---|
long |
Title
Заголовок уведомления
Declaration
public required string Title { get; set; }
Property Value
Type | Description |
---|---|
string |