mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 11:17:50 -05:00
23 lines
566 B
C#
23 lines
566 B
C#
using Cleanuparr.Domain.Enums;
|
|
|
|
namespace Cleanuparr.Api.Features.Notifications.Contracts.Requests;
|
|
|
|
public record TestPushoverProviderRequest
|
|
{
|
|
public string ApiToken { get; init; } = string.Empty;
|
|
|
|
public string UserKey { get; init; } = string.Empty;
|
|
|
|
public List<string> Devices { get; init; } = [];
|
|
|
|
public PushoverPriority Priority { get; init; } = PushoverPriority.Normal;
|
|
|
|
public string? Sound { get; init; }
|
|
|
|
public int? Retry { get; init; }
|
|
|
|
public int? Expire { get; init; }
|
|
|
|
public List<string> Tags { get; init; } = [];
|
|
}
|