├── .gitignore ├── .travis.yml ├── README.md ├── gen_client.cmd ├── gen_client_bitbucket20.cmd ├── pom.xml ├── regen_project.cmd └── src └── main ├── java └── uk │ └── co │ └── itofinity │ └── codegen │ ├── AbstractCSharpCodegen.java │ ├── CSharpRefitClientCodegen.java │ └── CsharprefitcodegenGenerator.java └── resources ├── META-INF └── services │ └── io.swagger.codegen.CodegenConfig └── csharprefit ├── ApiClient.mustache ├── Project.mustache ├── README.mustache ├── Solution.mustache ├── TestProject.mustache ├── api.mustache ├── api_doc.mustache ├── api_test.mustache ├── appveyor.mustache ├── enumClass.mustache ├── gitignore.mustache ├── model.mustache ├── modelEnum.mustache ├── modelGeneric.mustache ├── modelInnerEnum.mustache ├── model_doc.mustache ├── model_test.mustache ├── mono_nunit_test.mustache ├── partial_header.mustache ├── shared_project.mustache ├── shared_projitems.mustache └── visibility.mustache /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/README.md -------------------------------------------------------------------------------- /gen_client.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/gen_client.cmd -------------------------------------------------------------------------------- /gen_client_bitbucket20.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/gen_client_bitbucket20.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/pom.xml -------------------------------------------------------------------------------- /regen_project.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/regen_project.cmd -------------------------------------------------------------------------------- /src/main/java/uk/co/itofinity/codegen/AbstractCSharpCodegen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/java/uk/co/itofinity/codegen/AbstractCSharpCodegen.java -------------------------------------------------------------------------------- /src/main/java/uk/co/itofinity/codegen/CSharpRefitClientCodegen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/java/uk/co/itofinity/codegen/CSharpRefitClientCodegen.java -------------------------------------------------------------------------------- /src/main/java/uk/co/itofinity/codegen/CsharprefitcodegenGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/java/uk/co/itofinity/codegen/CsharprefitcodegenGenerator.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/io.swagger.codegen.CodegenConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/META-INF/services/io.swagger.codegen.CodegenConfig -------------------------------------------------------------------------------- /src/main/resources/csharprefit/ApiClient.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/ApiClient.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/Project.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/Project.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/README.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/Solution.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/Solution.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/TestProject.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/TestProject.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/api.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/api_doc.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/api_test.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/appveyor.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/appveyor.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/enumClass.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/enumClass.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/gitignore.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/model.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/modelEnum.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/modelEnum.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/modelGeneric.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/modelGeneric.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/modelInnerEnum.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/modelInnerEnum.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/model_doc.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/model_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/model_test.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/mono_nunit_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/mono_nunit_test.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/partial_header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/partial_header.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/shared_project.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/shared_project.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/shared_projitems.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/shared_projitems.mustache -------------------------------------------------------------------------------- /src/main/resources/csharprefit/visibility.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itofinity/swagger-csharp-refit/HEAD/src/main/resources/csharprefit/visibility.mustache --------------------------------------------------------------------------------