16 lines
No EOL
565 B
C#
16 lines
No EOL
565 B
C#
namespace Iceshrimp.Shared.Schemas.Web;
|
|
|
|
public class UserSettingsResponse : UserSettingsRequest
|
|
{
|
|
public bool TwoFactorEnrolled { get; set; }
|
|
}
|
|
|
|
public class UserSettingsRequest
|
|
{
|
|
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; }
|
|
} |