mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 18:08:44 -05:00
14 lines
362 B
C#
14 lines
362 B
C#
using Cleanuparr.Domain.Enums;
|
|
|
|
namespace Cleanuparr.Infrastructure.Features.Notifications.Models;
|
|
|
|
public record ArrNotification : Notification
|
|
{
|
|
public required InstanceType InstanceType { get; init; }
|
|
|
|
public required Uri InstanceUrl { get; init; }
|
|
|
|
public required string Hash { get; init; }
|
|
|
|
public Uri? Image { get; init; }
|
|
} |