using System.ComponentModel; namespace QYZH.InteractiveMagazine.Models.Enum; /// /// 消息Outbox状态。 /// public enum MessageOutboxStatusEnum { /// /// 待发送。 /// [Description("待发送")] Pending = 0, /// /// 已发送。 /// [Description("已发送")] Sent = 1, /// /// 发送失败待重试。 /// [Description("发送失败待重试")] Failed = 2, /// /// 已放弃。 /// [Description("已放弃")] Abandoned = 3 }