Winify – Rev 83

Subversion Repositories:
Rev:
using Newtonsoft.Json;
using Winify.Properties;

namespace Winify.Gotify
{
    public class GotifyMessageExtrasClientDisplay
    {
        private string _contentType = "text/plain";

        [JsonProperty(PropertyName = "contentType")]
        public string ContentType
        {
            get => _contentType;
            set => _contentType = value;
        }

        [UsedImplicitly]
        public GotifyMessageExtrasClientDisplay()
        {

        }
    }
}