Horizon – Rev 7

Subversion Repositories:
Rev:
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 GotifyMessageOutgoing
    {
        [JsonProperty(PropertyName = "title")]
        public string Title { get; set; }

        [JsonProperty(PropertyName = "message")]
        public string Message { get; set; }

        [JsonProperty(PropertyName = "extras")]
        public GotifyMessageExtras Extras { get; set; }
    }
}