mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
18 lines
688 B
C#
18 lines
688 B
C#
using System.Collections.Immutable;
|
|
|
|
namespace DHT.Server.Data {
|
|
public readonly struct Message {
|
|
public ulong Id { get; internal init; }
|
|
public ulong Sender { get; internal init; }
|
|
public ulong Channel { get; internal init; }
|
|
public string Text { get; internal init; }
|
|
public long Timestamp { get; internal init; }
|
|
public long? EditTimestamp { get; internal init; }
|
|
public ulong? RepliedToId { get; internal init; }
|
|
public ImmutableArray<Attachment> Attachments { get; internal init; }
|
|
public ImmutableArray<Embed> Embeds { get; internal init; }
|
|
public ImmutableArray<Reaction> Reactions { get; internal init; }
|
|
public string? RawJson { get; internal init; }
|
|
}
|
|
}
|