/* Options:
Date: 2025-04-15 17:59:17
Version: 6.40
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://cip-reporting-dev.chargeitpro.com

//Package: 
//GlobalNamespace: dtos
//AddPropertyAccessors: True
//SettersReturnThis: True
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddDescriptionAsComments: True
//AddImplicitVersion: 
IncludeTypes: ReconRequest.*
//ExcludeTypes: 
//TreatTypesAsStrings: 
//DefaultImports: java.math.*,java.util.*,net.servicestack.client.*
*/

import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    @Route("/Recon/{LocationId}")
    public static class ReconRequest
    {
        public String LocationId = null;
        
        public String getLocationId() { return LocationId; }
        public ReconRequest setLocationId(String value) { this.LocationId = value; return this; }
    }

}