mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 01:52:41 -04:00
13 lines
328 B
C#
13 lines
328 B
C#
namespace Cleanuparr.Api.Features.Notifications.Contracts.Requests;
|
|
|
|
public record TestGotifyProviderRequest
|
|
{
|
|
public string ServerUrl { get; init; } = string.Empty;
|
|
|
|
public string ApplicationToken { get; init; } = string.Empty;
|
|
|
|
public int Priority { get; init; } = 5;
|
|
|
|
public Guid? ProviderId { get; init; }
|
|
}
|