23 lines
579 B
C#
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>();
|
|
}
|
|
}
|