BotSharp/BotSharp.Core/Modules/ModuleOptions.cs

33 lines
636 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
{
2018-10-21 14:03:12 +00:00
public ModuleOptions()
{
Path = String.Empty;
}
2018-10-05 15:17:52 +00:00
/// <summary>
/// Module name
/// </summary>
public string Name { get; set; }
/// <summary>
/// Module type.
/// </summary>
public string Type { get; set; }
2018-10-05 15:17:52 +00:00
/// <summary>
/// Module path
/// </summary>
public string Path { get; set; }
}
}