2024-12-18 10:56:02 +01:00
|
|
|
|
namespace Uwaa.Pleroma;
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(EnumLowerCaseConverter<ReplyVisibility>))]
|
|
|
|
|
public enum ReplyVisibility
|
|
|
|
|
{
|
2024-12-21 20:01:57 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shows all replies.
|
|
|
|
|
/// </summary>
|
|
|
|
|
All,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Replies directed to you or users you follow.
|
|
|
|
|
/// </summary>
|
2024-12-18 10:56:02 +01:00
|
|
|
|
Following,
|
2024-12-21 20:01:57 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Replies directed to you.
|
|
|
|
|
/// </summary>
|
2024-12-18 10:56:02 +01:00
|
|
|
|
Self,
|
|
|
|
|
}
|