sharp-chat/SharpChatCommon/UserStatus.cs

8 lines
109 B
C#
Raw Normal View History

2022-08-30 15:00:58 +00:00
namespace SharpChat {
public enum UserStatus {
2022-08-30 15:00:58 +00:00
Online,
Away,
Offline,
}
}