mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 19:28:02 -05:00
8 lines
212 B
C#
8 lines
212 B
C#
namespace Cleanuparr.Infrastructure.Features.Notifications.Models;
|
|
|
|
public sealed record NotificationField
|
|
{
|
|
public required string Key { get; init; }
|
|
|
|
public required string Value { get; init; }
|
|
} |