Iceshrimp.NET/Iceshrimp.Shared/Schemas/UserSettingsEntity.cs
2024-05-07 02:40:01 +02:00

9 lines
No EOL
316 B
C#

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