/// Options: /// Date: 2026-09-01 21:49:33 /// Version: 10.09 /// Tip: To override a DTO option, remove "/" prefix before updating /// BaseUrl: https://blazor-gallery.servicestack.net /// GlobalNamespace: /// MakePropertiesOptional: False /// AddServiceStackTypes: True /// AddResponseStatus: False /// AddImplicitVersion: /// AddDescriptionAsComments: True //IncludeTypes: DeleteProfile.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); pub const Profile = struct { id: i32 = 0, role: ?PlayerRole = null, region: ?PlayerRegion = null, username: ?[]const u8 = null, highScore: i64 = 0, gamesPlayed: i64 = 0, energy: i32 = 0, profileUrl: ?[]const u8 = null, coverUrl: ?[]const u8 = null, meta: ?std.json.Value = null, }; pub const DeleteProfile = struct { pub const ss_name = "DeleteProfile"; pub const ss_verb = "DELETE"; id: i32 = 0, };