/* Options: Date: 2025-01-08 03:18: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: DeleteArtifactLike.* //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 DeleteArtifactLike implements IReturnVoid, IDeleteDb { @Validate(Validator="GreaterThan(0)") public Integer artifactId = null; public Integer getArtifactId() { return artifactId; } public DeleteArtifactLike setArtifactId(Integer value) { this.artifactId = value; return this; } } public static class ArtifactLike { public Long id = null; @References(Type=Artifact.class) public Integer artifactId = null; public Integer appUserId = null; public Date createdDate = null; public Long getId() { return id; } public ArtifactLike setId(Long value) { this.id = value; return this; } public Integer getArtifactId() { return artifactId; } public ArtifactLike setArtifactId(Integer value) { this.artifactId = value; return this; } public Integer getAppUserId() { return appUserId; } public ArtifactLike setAppUserId(Integer value) { this.appUserId = value; return this; } public Date getCreatedDate() { return createdDate; } public ArtifactLike setCreatedDate(Date value) { this.createdDate = value; return this; } } }