/* Options: Date: 2024-09-27 22:40:57 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteJobApplicationComment.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @ValidateRequest(Validator="IsAuthenticated") public static class DeleteJobApplicationComment implements IReturnVoid, IDeleteDb { public Integer id = null; public Integer getId() { return id; } public DeleteJobApplicationComment setId(Integer value) { this.id = value; return this; } } public static class JobApplicationComment extends AuditBase { public Integer id = null; @References(AppUser.class) public String appUserId = null; public AppUser appUser = null; @References(JobApplication.class) public Integer jobApplicationId = null; public String comment = null; public Integer getId() { return id; } public JobApplicationComment setId(Integer value) { this.id = value; return this; } public String getAppUserId() { return appUserId; } public JobApplicationComment setAppUserId(String value) { this.appUserId = value; return this; } public AppUser getAppUser() { return appUser; } public JobApplicationComment setAppUser(AppUser value) { this.appUser = value; return this; } public Integer getJobApplicationId() { return jobApplicationId; } public JobApplicationComment setJobApplicationId(Integer value) { this.jobApplicationId = value; return this; } public String getComment() { return comment; } public JobApplicationComment setComment(String value) { this.comment = value; return this; } } }