/// Options: /// Date: 2026-09-01 21:49:02 /// 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: CreateAlbums.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); const ss = @import("servicestack"); pub const Albums = struct { albumId: i64 = 0, // @Required() title: ?[]const u8 = null, artistId: i64 = 0, }; // @Route("/albums", "POST") pub const CreateAlbums = struct { pub const ss_name = "CreateAlbums"; pub const ss_verb = "POST"; pub const Response = ss.IdResponse; // @Validate(Validator="NotEmpty") title: ?[]const u8 = null, // @Validate(Validator="GreaterThan(0)") artistId: i64 = 0, };