PluralKit/PluralKit.Core/Database/Functions/MessageContext.cs

30 lines
1023 B
C#
Raw Normal View History

#nullable enable
using NodaTime;
namespace PluralKit.Core
{
/// <summary>
/// Model for the `message_context` PL/pgSQL function in `functions.sql`
/// </summary>
public class MessageContext
{
2020-06-14 19:37:04 +00:00
public SystemId? SystemId { get; }
2020-06-12 22:42:25 +00:00
public ulong? LogChannel { get; }
public bool InBlacklist { get; }
public bool InLogBlacklist { get; }
public bool LogCleanupEnabled { get; }
public bool ProxyEnabled { get; }
public AutoproxyMode AutoproxyMode { get; }
2020-06-14 19:37:04 +00:00
public MemberId? AutoproxyMember { get; }
2020-06-12 22:42:25 +00:00
public ulong? LastMessage { get; }
2020-06-14 19:37:04 +00:00
public MemberId? LastMessageMember { get; }
public SwitchId? LastSwitch { get; }
2020-06-17 20:39:54 +00:00
public MemberId[] LastSwitchMembers { get; } = new MemberId[0];
public Instant? LastSwitchTimestamp { get; }
2020-06-12 22:42:25 +00:00
public string? SystemTag { get; }
public string? SystemAvatar { get; }
2020-11-20 23:34:08 +00:00
public bool AllowAutoproxy { get; }
public int? LatchTimeout { get; }
}
}