mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 19:28:02 -05:00
12 lines
335 B
C#
12 lines
335 B
C#
namespace Cleanuparr.Infrastructure.Features.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; }
|
|
} |