29 lines
974 B
C#
Raw Normal View History

using Dapper.Contrib.Extensions;
using Newtonsoft.Json;
using NodaTime;
namespace PluralKit.Core {
public class PKSystem
{
// Additions here should be mirrored in SystemStore::Save
2020-06-14 21:37:04 +02:00
[Key] public SystemId Id { get; }
2020-06-13 13:11:08 +02:00
public string Hid { get; }
2020-06-13 13:06:41 +02:00
public string Name { get; set; }
public string Description { get; set; }
public string Tag { get; set; }
public string AvatarUrl { get; set; }
public string Token { get; set; }
2020-06-13 13:11:08 +02:00
public Instant Created { get; }
2020-06-13 13:06:41 +02:00
public string UiTz { get; set; }
public bool PingsEnabled { get; set; }
2020-03-22 01:42:39 -04:00
public PrivacyLevel DescriptionPrivacy { get; set; }
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 08:04:41 -05:00
}