/// Options: /// Date: 2026-09-01 21:49:34 /// 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: DeleteContact.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); pub const Contact = struct { id: i32 = 0, // @Computed() displayName: ?[]const u8 = null, profileUrl: ?[]const u8 = null, firstName: ?[]const u8 = null, lastName: ?[]const u8 = null, salaryExpectation: ?i32 = null, jobType: ?[]const u8 = null, availabilityWeeks: i32 = 0, preferredWorkType: ?EmploymentType = null, preferredLocation: ?[]const u8 = null, email: ?[]const u8 = null, phone: ?[]const u8 = null, skills: ?[][]const u8 = null, about: ?[]const u8 = null, applications: []JobApplication = &.{}, }; pub const DeleteContact = struct { pub const ss_name = "DeleteContact"; pub const ss_verb = "DELETE"; id: i32 = 0, };