SocialPub/PrivaPub.ClientModels/User/ViewAvatarState.cs

12 lines
134 B
C#
Raw Normal View History

2023-02-19 00:43:43 +01:00
namespace PrivaPub.ClientModels.User
{
public enum ViewAvatarState
{
Normal,
Silenced,
Suspended,
Banned,
Deleted
}
}