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