Ajout des syncshell perma & temporaire

This commit is contained in:
2025-09-20 09:02:53 +02:00
parent 74dac9f506
commit f9df60dc88
6 changed files with 166 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations;
using System;
using System.ComponentModel.DataAnnotations;
namespace MareSynchronosShared.Models;
@@ -16,4 +17,6 @@ public class Group
public bool DisableSounds { get; set; }
public bool DisableAnimations { get; set; }
public bool DisableVFX { get; set; }
public bool IsTemporary { get; set; }
public DateTime? ExpiresAt { get; set; }
}