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