9 lines
94 B
C#
9 lines
94 B
C#
namespace Chat.Domain.Enums;
|
|
|
|
public enum MessageStatus
|
|
{
|
|
Sent,
|
|
Delivered,
|
|
Read
|
|
}
|