28 lines
937 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 21:37:04 +02:00
public SystemId? SystemId { get; }
2020-06-13 00:42:25 +02: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 21:37:04 +02:00
public MemberId? AutoproxyMember { get; }
2020-06-13 00:42:25 +02:00
public ulong? LastMessage { get; }
2020-06-14 21:37:04 +02:00
public MemberId? LastMessageMember { get; }
public SwitchId? LastSwitch { get; }
2020-06-17 22:39:54 +02:00
public MemberId[] LastSwitchMembers { get; } = new MemberId[0];
public Instant? LastSwitchTimestamp { get; }
2020-06-13 00:42:25 +02:00
public string? SystemTag { get; }
public string? SystemAvatar { get; }
}
}