/* Options: Date: 2025-01-08 03:07:52 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: DeleteArtist.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @ValidateRequest(Validator="HasRole(`Moderator`)") open class DeleteArtist : IReturnVoid, IDeleteDb { open var id:Int? = null } open class Artist : AuditBase() { open var id:Int? = null open var firstName:String? = null open var lastName:String? = null open var yearDied:Int? = null @SerializedName("type") open var Type:ArrayList? = null open var score:Int? = null open var rank:Int? = null }