diff --git a/LightlessSyncAPI/Dto/User/UserProfileDto.cs b/LightlessSyncAPI/Dto/User/UserProfileDto.cs index 8a050c2..637d9cd 100644 --- a/LightlessSyncAPI/Dto/User/UserProfileDto.cs +++ b/LightlessSyncAPI/Dto/User/UserProfileDto.cs @@ -4,4 +4,4 @@ using MessagePack; namespace LightlessSync.API.Dto.User; [MessagePackObject(keyAsPropertyName: true)] -public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? Description) : UserDto(User); \ No newline at end of file +public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? Description, int[]? Tags) : UserDto(User); \ No newline at end of file