Files
LightlessServer/LightlessSyncServer/LightlessSyncShared/Models/GroupPairPreferredPermission.cs
Tsubasahane d3790013c6 Revert "Share Location"
This reverts commit 9971b14177.
2025-12-28 11:00:50 +08:00

14 lines
413 B
C#

namespace LightlessSyncShared.Models;
public class GroupPairPreferredPermission
{
public string GroupGID { get; set; }
public Group Group { get; set; }
public string UserUID { get; set; }
public User User { get; set; }
public bool IsPaused { get; set; }
public bool DisableAnimations { get; set; }
public bool DisableSounds { get; set; }
public bool DisableVFX { get; set; }
}