/* Options: Date: 2025-01-08 03:19:39 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: DeleteAlbumLike.* //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 DeleteAlbumLike implements IReturnVoid, IDeleteDb { @Validate(Validator="GreaterThan(0)") public Integer albumId = null; public Integer getAlbumId() { return albumId; } public DeleteAlbumLike setAlbumId(Integer value) { this.albumId = value; return this; } } public static class AlbumLike { public Long id = null; @References(Type=Album.class) public Integer albumId = null; public Integer appUserId = null; public Date createdDate = null; public Long getId() { return id; } public AlbumLike setId(Long value) { this.id = value; return this; } public Integer getAlbumId() { return albumId; } public AlbumLike setAlbumId(Integer value) { this.albumId = value; return this; } public Integer getAppUserId() { return appUserId; } public AlbumLike setAppUserId(Integer value) { this.appUserId = value; return this; } public Date getCreatedDate() { return createdDate; } public AlbumLike setCreatedDate(Date value) { this.createdDate = value; return this; } } }