/* Options: Date: 2025-01-08 03:15:07 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteSignup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @ValidateRequest(Validator="HasRole(`Moderator`)") public static class DeleteSignup implements IReturnVoid, IDeleteDb { public Integer id = null; public Integer getId() { return id; } public DeleteSignup setId(Integer value) { this.id = value; return this; } } public static class Signup extends StatBase { public Integer id = null; public SignupType type = null; public String email = null; public String name = null; public Date cancelledDate = null; public Integer getId() { return id; } public Signup setId(Integer value) { this.id = value; return this; } public SignupType getType() { return type; } public Signup setType(SignupType value) { this.type = value; return this; } public String getEmail() { return email; } public Signup setEmail(String value) { this.email = value; return this; } public String getName() { return name; } public Signup setName(String value) { this.name = value; return this; } public Date getCancelledDate() { return cancelledDate; } public Signup setCancelledDate(Date value) { this.cancelledDate = value; return this; } } }