/// Options: /// Date: 2026-09-01 21:27:00 /// 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: CreateTodo.* /// 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", "POST") pub const CreateTodo = struct { pub const ss_name = "CreateTodo"; pub const ss_verb = "POST"; pub const Response = Todo; // @Validate(Validator="NotEmpty") text: ?[]const u8 = null, };