diff --git a/Pleroma/StatusVisibility.cs b/Pleroma/StatusVisibility.cs index 2b8055a..5a8f523 100644 --- a/Pleroma/StatusVisibility.cs +++ b/Pleroma/StatusVisibility.cs @@ -3,10 +3,33 @@ [JsonConverter(typeof(EnumLowerCaseConverter))] public enum StatusVisibility { + /// + /// Visible to everyone. + /// Public, + + /// + /// Post is only visible on user's timeline. Not visible on the public timeline or known network. + /// Unlisted, + + /// + /// Only visible to users on the same instance (not federated). + /// Local, + + /// + /// Can only be seen by followers. + /// Private, + + /// + /// Can only be seen by mentioned users. + /// Direct, + + /// + /// Member of a list. + /// List }