namespace SPMS.Domain.Enums; /// /// 메시지 발송 상태 /// public enum MessageStatus : byte { Draft = 0, Pending = 1, Sending = 2, Sent = 3, Failed = 4, Cancelled = 5 }