11 lines
275 B
C#
11 lines
275 B
C#
using MessagePack;
|
|
|
|
namespace MareSynchronos.API.Dto.Group;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public sealed record SyncshellDiscoveryVisibilityRequestDto
|
|
{
|
|
public string GID { get; init; } = string.Empty;
|
|
public bool AutoDetectVisible { get; init; }
|
|
}
|