/// Options: /// Date: 2026-09-01 21:28: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: PatchGenres.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); const ss = @import("servicestack"); pub const Genres = struct { genreId: i64 = 0, name: ?[]const u8 = null, }; // @Route("/genres/{GenreId}", "PATCH") pub const PatchGenres = struct { pub const ss_name = "PatchGenres"; pub const ss_verb = "PATCH"; pub const Response = ss.IdResponse; genreId: i64 = 0, name: ?[]const u8 = null, };