10 lines
261 B
C#
10 lines
261 B
C#
using MessagePack;
|
|
|
|
namespace LightlessSync.API.Dto.User;
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record UnbanRequest(string? Uid, string? DiscordId)
|
|
{
|
|
public bool IsValid => !string.IsNullOrEmpty(Uid) || !string.IsNullOrEmpty(DiscordId);
|
|
}
|
|
|