10 lines
266 B
C#
10 lines
266 B
C#
using MessagePack;
|
|
|
|
namespace LightlessSync.API.Data;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record GroupData(string GID, string? Alias = null, DateTime? CreatedAt = null)
|
|
{
|
|
[IgnoreMember]
|
|
public string AliasOrGID => Alias ?? GID;
|
|
} |