/* Options: Date: 2025-01-08 03:11:34 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: DeleteArtifactCommentVote.* //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="IsAuthenticated") public static class DeleteArtifactCommentVote implements IReturnVoid, IDeleteDb { public Integer artifactCommentId = null; public Integer getArtifactCommentId() { return artifactCommentId; } public DeleteArtifactCommentVote setArtifactCommentId(Integer value) { this.artifactCommentId = value; return this; } } public static class ArtifactCommentVote { public Long id = null; @References(Type=ArtifactComment.class) public Integer artifactCommentId = null; public Integer appUserId = null; public Integer vote = null; public Date createdDate = null; public Long getId() { return id; } public ArtifactCommentVote setId(Long value) { this.id = value; return this; } public Integer getArtifactCommentId() { return artifactCommentId; } public ArtifactCommentVote setArtifactCommentId(Integer value) { this.artifactCommentId = value; return this; } public Integer getAppUserId() { return appUserId; } public ArtifactCommentVote setAppUserId(Integer value) { this.appUserId = value; return this; } public Integer getVote() { return vote; } public ArtifactCommentVote setVote(Integer value) { this.vote = value; return this; } public Date getCreatedDate() { return createdDate; } public ArtifactCommentVote setCreatedDate(Date value) { this.createdDate = value; return this; } } }