7 lines
113 B
C#
7 lines
113 B
C#
namespace SharpChat {
|
|
public enum ChatUserStatus {
|
|
Online,
|
|
Away,
|
|
Offline,
|
|
}
|
|
}
|