2023-04-01 19:11:37 +08:00

31 lines
740 B
C#

/**
* OpenAPI Petstore
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator
* https://github.com/OpenAPITools/openapi-generator
* Do not edit the class manually.
*/
using System;
using System.IO;
using UnrealBuildTool;
public class OpenAPI : ModuleRules
{
public OpenAPI(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"HTTP",
"Json",
}
);
PCHUsage = PCHUsageMode.NoPCHs;
}
}