mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-28 00:17:55 -05:00
8 lines
203 B
C#
8 lines
203 B
C#
namespace Infrastructure.Verticals.Notifications.Models;
|
|
|
|
public sealed record NotificationField
|
|
{
|
|
public required string Title { get; init; }
|
|
|
|
public required string Text { get; init; }
|
|
} |