7 lines
296 B
C#
7 lines
296 B
C#
using LightlessSync.API.Data;
|
|
using MessagePack;
|
|
|
|
namespace LightlessSync.API.Dto.User;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? Description, int[]? Tags) : UserDto(User); |