PluralKit/Myriad/Gateway/Events/MessageUpdateEvent.cs

10 lines
233 B
C#
Raw Normal View History

2020-12-25 12:58:45 +00:00
using Myriad.Utils;
namespace Myriad.Gateway
2020-12-22 12:15:26 +00:00
{
public record MessageUpdateEvent(ulong Id, ulong ChannelId): IGatewayEvent
{
2020-12-25 12:58:45 +00:00
public Optional<string?> Content { get; init; }
2020-12-22 12:15:26 +00:00
// TODO: lots of partials
}
}