BotSharp/BotSharp.Core/Modules/ModuleOptions.cs

18 lines
329 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Modules
{
/// <summary>
/// Module configuration .
/// </summary>
public class ModuleOptions
{
/// <summary>
/// Module type.
/// </summary>
public string Type { get; set; }
}
}