* add jwt expiry * bump api version * start rework permissions * ok so in theory this compiles * update api * update api * update api * update api once more * oh apiii I hate submodules * blabla * we only live to suffer * stop reading my commit messages * nothing to see here move along * update nuget * some rework --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
15 lines
564 B
C#
15 lines
564 B
C#
using MessagePack;
|
|
|
|
namespace MareSynchronos.API.Dto;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record DefaultPermissionsDto
|
|
{
|
|
public bool DisableIndividualAnimations { get; set; } = false;
|
|
public bool DisableIndividualSounds { get; set; } = false;
|
|
public bool DisableIndividualVFX { get; set; } = false;
|
|
public bool DisableGroupAnimations { get; set; } = false;
|
|
public bool DisableGroupSounds { get; set; } = false;
|
|
public bool DisableGroupVFX { get; set; } = false;
|
|
public bool IndividualIsSticky { get; set; } = true;
|
|
} |