Files
SnowcloakClient/MareAPI/MareSynchronosAPI/Dto/User/UserProfileReportDto.cs

7 lines
227 B
C#
Raw Normal View History

2025-08-22 02:19:48 +01:00
using MareSynchronos.API.Data;
using MessagePack;
namespace MareSynchronos.API.Dto.User;
[MessagePackObject(keyAsPropertyName: true)]
public record UserProfileReportDto(UserData User, string ProfileReport) : UserDto(User);