83f51c6a23
Added shopping cart and items Added quotes Refactored relatinoships Migrated changes Refactored cqrs commands and queries Refactored mappings
29 lines
608 B
C#
29 lines
608 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; }
|
|
|
|
public bool Processed { get; set; }
|
|
}
|