mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-15 09:19:01 -05:00
12 lines
325 B
C#
12 lines
325 B
C#
namespace Infrastructure.Verticals.Notifications.Models;
|
|
|
|
public abstract record Notification
|
|
{
|
|
public required string Title { get; init; }
|
|
|
|
public required string Description { get; init; }
|
|
|
|
public List<NotificationField>? Fields { get; init; }
|
|
|
|
public NotificationLevel Level { get; init; }
|
|
} |