/* Options: Date: 2025-01-08 03:07:34 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteArtifactCommentVote.* //ExcludeTypes: //InitializeCollections: False //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.* @ValidateRequest(Validator="IsAuthenticated") open class DeleteArtifactCommentVote : IReturnVoid, IDeleteDb { open var artifactCommentId:Int? = null } open class ArtifactCommentVote { open var id:Long? = null @References(Type=ArtifactComment::class) open var artifactCommentId:Int? = null open var appUserId:Int? = null open var vote:Int? = null open var createdDate:Date? = null }