You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.Ntfy/Models/NtfyNotificationBody.cs

21 lines
518 B

using Newtonsoft.Json;
namespace Ombi.Api.Ntfy.Models;
public class NtfyNotificationBody
{
[JsonConstructor]
public NtfyNotificationBody()
{
}
public string topic { get; set; }
public string message { get; set; }
public string title { get; set; }
public List<string> tags { get; set; }
public sbyte priority { get; set; }
public string click { get; set; }
public string attach { get; set; }
public string filename { get; set; }
public string delay { get; set; }
}