Horizon – Rev 7
?pathlinks?
using Horizon.Annotations;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Horizon.Notifications.Gotify
{
public class GotifyMessageExtrasClientDisplay
{
private string _contentType = "text/plain";
[JsonProperty(PropertyName = "contentType")]
public string ContentType
{
get => _contentType;
set => _contentType = value;
}
[UsedImplicitly]
public GotifyMessageExtrasClientDisplay()
{
}
}
}