Clean up legacy outgoing attachment duplicates

This commit is contained in:
sevenhill
2026-07-05 00:26:18 +03:00
parent b022218a1f
commit b518f22a09
14 changed files with 407 additions and 2 deletions
+36
View File
@@ -0,0 +1,36 @@
namespace QMax.Api.Data.Entities;
public enum ChatKind
{
Direct = 0,
Group = 1,
Channel = 2,
MaxDialog = 3
}
public enum MessageDirection
{
Incoming = 0,
Outgoing = 1,
System = 2
}
public enum MessageDeliveryState
{
Sending = 0,
Sent = 1,
Delivered = 2,
Read = 3,
Failed = 4
}
public enum AttachmentKind
{
File = 0,
VoiceNote = 1,
Image = 2,
Video = 3,
Sticker = 4,
Gif = 5,
Contact = 6
}