16 lines
492 B
C#
16 lines
492 B
C#
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; }
|
|
}
|