27 lines
567 B
C#
27 lines
567 B
C#
namespace LiteCharms.Models;
|
|
|
|
public class Notification
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public NotificationDirection Direction { get; set; }
|
|
|
|
public string? Author { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public string? Platform { get; set; }
|
|
|
|
public string? PlatformAddress { get; set; }
|
|
|
|
public string? CorrelationId { get; set; }
|
|
|
|
public string? CorrelationIdType { get; set; }
|
|
|
|
public bool IsInternal { get; set; }
|
|
}
|