vassago/Models/FranzMessage.cs
adam 072a76794e
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
it... works?
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; }
}
}