/* Options: Date: 2025-04-04 18:01:47 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FileAttachmentService.DeleteFileRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/api/FileAttachment/DeleteFile", Verbs="POST,GET") public static class DeleteFileRequest implements IReturnVoid { public Integer FileAttachmentId = null; public Integer getFileAttachmentId() { return FileAttachmentId; } public DeleteFileRequest setFileAttachmentId(Integer value) { this.FileAttachmentId = value; return this; } } }