This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Models/FranzMessage.cs
2025-05-15 16:50:56 -04:00

32 lines
947 B
C#

using System;
using System.Collections.Generic;
using franz;
using gray_messages;
namespace gray_messages.chat
{
public class chat_message : gray_messages.message
{
//expect this to be the same every time
public Uri Api_Uri { get; set; }
public Guid MessageId { get; set; }
public string MessageContent { get; set; }
public bool MentionsMe { get; set; }
public DateTimeOffset Timestamp { get; set; }
public uint AttachmentCount { get; set; }
public Guid AccountId { get; set; }
public string AccountName { get; set; }
public Guid UserId { get; set; }
public string UserName { get; set; }
public Guid ChannelId { get; set; }
public string ChannelName { get; set; }
public string ChannelProtoocl { get; set; }
public List<Guid> UAC_Matches { get; set; }
public List<string> BehavedOnBy { get; set; }
}
}