/* Options: Date: 2025-01-08 03:03:46 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: CreateArtifactCommentVote.* //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 CreateArtifactCommentVote : IReturnVoid, ICreateDb { open var artifactCommentId:Int? = null @Validate(Validator="InclusiveBetween(-1,1)") open var vote: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 }