Files
FreeSR/FreeSR.Proto/MessageGroupStatus.cs
2024-01-27 21:06:07 +08:00

13 lines
192 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
public enum MessageGroupStatus
{
MESSAGE_GROUP_NONE = 0,
MESSAGE_GROUP_DOING = 1,
MESSAGE_GROUP_FINISH = 2,
MESSAGE_GROUP_FROZEN = 3,
}
}