/// Options: /// Date: 2026-08-14 19:47:50 /// 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: DeleteArtists.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); const ss = @import("servicestack"); pub const Artists = struct { artistId: i64 = 0, name: ?[]const u8 = null, }; // @Route("/artists/{ArtistId}", "DELETE") pub const DeleteArtists = struct { pub const ss_name = "DeleteArtists"; pub const ss_verb = "DELETE"; pub const Response = ss.IdResponse; artistId: i64 = 0, };