/// Options: /// Date: 2026-09-01 21:49:03 /// 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: UpdateTodo.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); pub const Todo = struct { id: i64 = 0, text: ?[]const u8 = null, isFinished: bool = false, }; // @Route("/todos/{Id}", "PUT") pub const UpdateTodo = struct { pub const ss_name = "UpdateTodo"; pub const ss_verb = "PUT"; pub const Response = Todo; id: i64 = 0, // @Validate(Validator="NotEmpty") text: ?[]const u8 = null, isFinished: bool = false, };