mirror of
https://github.com/cadmium-im/zirconium-sharp.git
synced 2024-11-08 11:41:04 +00:00
Prototype message model in MessageStorage plugin
This commit is contained in:
parent
d125c7a4e2
commit
a489ff518e
@ -1,7 +1,32 @@
|
||||
using MongoDB.Bson;
|
||||
using MongoDB.Bson.Serialization.Attributes;
|
||||
|
||||
namespace MessageStorage
|
||||
{
|
||||
public class Message
|
||||
{
|
||||
public ObjectId Id { get; set; }
|
||||
public string From { get; set; }
|
||||
public string To { get; set; }
|
||||
public string RoomId { get; set; }
|
||||
public string Type { get; set; }
|
||||
public long Timestamp { get; set; }
|
||||
public string Content { get; set; }
|
||||
public Media[] Media { get; set; }
|
||||
public Reaction[] Reactions { get; set; }
|
||||
|
||||
[BsonExtraElements]
|
||||
public BsonDocument OtherMetadata { get; set; }
|
||||
}
|
||||
|
||||
public class Media
|
||||
{
|
||||
public string MimeType;
|
||||
public string Url;
|
||||
}
|
||||
|
||||
public class Reaction
|
||||
{
|
||||
public string ID { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user