namespace ZhonTai.DynamicApi;
///
/// Specifies the dynamic webapi options for the assembly.
///
public class AssemblyDynamicApiOptions
{
///
/// Routing prefix for all APIs
///
/// Default value is null.
///
public string ApiPrefix { get; }
///
/// API HTTP Verb.
///
/// Default value is null.
///
public string HttpVerb { get; }
///
///
///
/// Routing prefix for all APIs
/// API HTTP Verb.
public AssemblyDynamicApiOptions(string apiPrefix = null, string httpVerb = null)
{
ApiPrefix = apiPrefix;
HttpVerb = httpVerb;
}
}