mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
* add jwt expiry * update api * merge * start rework permissions * ok so in theory this compiles * make it work I guess * reuse some permissions * fix intermediate connectivity issues * fixes * whatever * some fixes I guess * fix some stuff * idk some random fixes I guess * change some defaults * update nuget * adjust order of operations * adjust deletion of account * remove todo --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
13 lines
414 B
C#
13 lines
414 B
C#
namespace MareSynchronosShared.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; }
|
|
}
|