Files
PlantBox/PlantBox.Client/PlantBox.Client/Models/Settings.cs
2019-03-24 19:40:53 +01:00

23 lines
579 B
C#

using Newtonsoft.Json;
using PlantBox.Client.Converters;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
namespace PlantBox.Client.Models
{
class Settings
{
[JsonConverter(typeof(JsonCultureInfoConverter))]
public CultureInfo Language { get; set; }
public bool NotificationsDisabled { get; set; } = false;
public bool NotificationsMuted { get; set; } = false;
public string BrokerIP { get; set; } = "";
public List<ulong> IDs { get; set; } = new List<ulong>();
}
}