mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 20:29:22 -05:00
14 lines
341 B
C#
14 lines
341 B
C#
using Domain.Enums;
|
|
|
|
namespace Infrastructure.Verticals.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; }
|
|
} |