You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
779 B

using ReZero.DependencyInjection;
using ReZero.SuperAPI;
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
namespace ReZero
{
/// <summary>
/// Represents the options for the ReZero class.
/// </summary>
public class ReZeroOptions
{
/// <summary>
/// Gets or sets the options for the SuperAPI.
/// </summary>
public SuperAPIOptions SuperApiOptions { get; set; } = new SuperAPIOptions();
/// <summary>
/// Gets or sets the options for the DependencyInjection.
/// </summary>
public ReZero.DependencyInjection.DependencyInjectionOptions DependencyInjectionOptions { get; set; } = new ReZero.DependencyInjection.DependencyInjectionOptions();
}
}