Syncshell Public & MCDF Share

This commit is contained in:
2025-11-01 19:55:54 +01:00
parent 0abb078c21
commit deb911cb0a
8 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using MessagePack;
namespace MareSynchronos.API.Dto.Group;
[MessagePackObject(keyAsPropertyName: true)]
public sealed record SyncshellDiscoveryEntryDto
{
public string GID { get; init; } = string.Empty;
public string? Alias { get; init; }
public string OwnerUID { get; init; } = string.Empty;
public string? OwnerAlias { get; init; }
public int MemberCount { get; init; }
public bool AutoAcceptPairs { get; init; }
public string? Description { get; init; }
}