Syncshell Public & MCDF Share
This commit is contained in:
15
MareSynchronosAPI/Dto/Group/SyncshellDiscoveryEntryDto.cs
Normal file
15
MareSynchronosAPI/Dto/Group/SyncshellDiscoveryEntryDto.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user