Files
LightlessServer/LightlessAPI/LightlessSyncAPI/Dto/DefaultPermissionsDto.cs
2025-08-27 03:02:29 +02:00

15 lines
563 B
C#

using MessagePack;
namespace LightlessSync.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;
}