Iceshrimp.NET/Iceshrimp.Shared/Schemas/Web/UserSettingsEntity.cs

11 lines
No EOL
442 B
C#

namespace Iceshrimp.Shared.Schemas.Web;
public class UserSettingsEntity
{
public NoteVisibility DefaultNoteVisibility { get; set; }
public NoteVisibility DefaultRenoteVisibility { get; set; }
public bool PrivateMode { get; set; }
public bool FilterInaccessible { get; set; }
public bool AutoAcceptFollowed { get; set; }
public bool AlwaysMarkSensitive { get; set; }
}