Ajout des syncshell perma

This commit is contained in:
2025-09-20 09:02:05 +02:00
parent 7a48ca9823
commit fa9b7bce43
3 changed files with 15 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
using MareSynchronos.API.Data;
using System;
using MareSynchronos.API.Data;
using MareSynchronos.API.Data.Enum;
using MessagePack;
@@ -13,4 +14,7 @@ public record GroupInfoDto(GroupData Group, UserData Owner, GroupPermissions Gro
public string OwnerUID => Owner.UID;
public string? OwnerAlias => Owner.Alias;
public string OwnerAliasOrUID => Owner.AliasOrUID;
public bool IsTemporary { get; set; }
public DateTime? ExpiresAt { get; set; }
}