You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Notifications/Apprise/Dto/AppriseNotification.cs

11 lines
317 B

namespace Recyclarr.Notifications.Apprise.Dto;
public record AppriseNotification
{
public required string Body { get; init; }
public string? Title { get; init; }
public AppriseMessageType? Type { get; init; }
public AppriseMessageFormat? Format { get; init; }
public string? Tag { get; init; }
}