Added support for notifications
This commit is contained in:
@@ -19,3 +19,10 @@ public enum LeadStatus : int
|
||||
Converted = 4,
|
||||
Lost = 5
|
||||
}
|
||||
|
||||
public enum NotificationDirection : int
|
||||
{
|
||||
Incoming = 0,
|
||||
Outgoing = 1,
|
||||
Neutral = 2
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user