2020-02-12 14:16:19 +00:00
|
|
|
|
using Dapper.Contrib.Extensions;
|
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
using NodaTime;
|
|
|
|
|
|
|
|
|
|
namespace PluralKit.Core {
|
|
|
|
|
public class PKSystem
|
|
|
|
|
{
|
|
|
|
|
// Additions here should be mirrored in SystemStore::Save
|
|
|
|
|
[Key] [JsonIgnore] public int Id { get; set; }
|
|
|
|
|
[JsonProperty("id")] public string Hid { get; set; }
|
|
|
|
|
[JsonProperty("name")] public string Name { get; set; }
|
|
|
|
|
[JsonProperty("description")] public string Description { get; set; }
|
|
|
|
|
[JsonProperty("tag")] public string Tag { get; set; }
|
|
|
|
|
[JsonProperty("avatar_url")] public string AvatarUrl { get; set; }
|
|
|
|
|
[JsonIgnore] public string Token { get; set; }
|
|
|
|
|
[JsonProperty("created")] public Instant Created { get; set; }
|
|
|
|
|
[JsonProperty("tz")] public string UiTz { get; set; }
|
2020-06-11 19:32:04 +00:00
|
|
|
|
[JsonProperty("ping")] public bool PingsEnabled { get; set; }
|
2020-03-22 05:42:39 +00:00
|
|
|
|
public PrivacyLevel DescriptionPrivacy { get; set; }
|
2020-02-12 14:16:19 +00:00
|
|
|
|
public PrivacyLevel MemberListPrivacy { get; set; }
|
|
|
|
|
public PrivacyLevel FrontPrivacy { get; set; }
|
|
|
|
|
public PrivacyLevel FrontHistoryPrivacy { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonIgnore] public DateTimeZone Zone => DateTimeZoneProviders.Tzdb.GetZoneOrNull(UiTz);
|
|
|
|
|
}
|
2020-03-21 13:04:41 +00:00
|
|
|
|
}
|