Winify – Rev 44

Subversion Repositories:
Rev:
using Newtonsoft.Json;

namespace Winify.Gotify
{
    public class GotifyApplication
    {
        #region Public Enums, Properties and Fields

        [JsonProperty(PropertyName = "id")] public int Id { get; set; }

        [JsonProperty(PropertyName = "token")] public string Token { get; set; }

        [JsonProperty(PropertyName = "name")] public string Name { get; set; }

        [JsonProperty(PropertyName = "description")]
        public string Description { get; set; }

        [JsonProperty(PropertyName = "internal")]
        public bool Internal { get; set; }

        [JsonProperty(PropertyName = "image")] public string Image { get; set; }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.