BotSharp/BotSharp.Core/Modules/ModulesOptions.cs
geffzhang 83b9a2347e refactor di and modify async/await
feat : refactor di and modify async/await
2018-10-05 14:39:39 +08:00

18 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Modules
{
/// <summary>
/// Module Host configuration.
/// </summary>
public class ModulesOptions
{
/// <summary>
/// List of module configurations.
/// </summary>
public List<ModuleOptions> Modules { get; set; }
}
}