This commit is contained in:
hrxiang
2022-06-27 17:55:18 +08:00
parent 7247f6b982
commit 6ad47216fb
37 changed files with 970 additions and 256 deletions

View File

@@ -1,6 +1,14 @@
/// 消息发送状态
class MessageStatus {
/// 发送中
static const sending = 1;
/// 已发送成功
static const succeeded = 2;
/// 发送失败
static const failed = 3;
/// 已经删除
static const deleted = 4;
}