Add files via upload

This commit is contained in:
Zura
2025-08-21 21:24:29 +02:00
committed by GitHub
commit 9a8ffe093f
62 changed files with 1206 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
using MareSynchronos.API.Data;
using MessagePack;
namespace MareSynchronos.API.Dto.User;
[MessagePackObject(keyAsPropertyName: true)]
public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? Description) : UserDto(User);