9 lines
222 B
C#
9 lines
222 B
C#
|
namespace Geekbot.net.WebApi.Help
|
|||
|
{
|
|||
|
public class CommandParamDto
|
|||
|
{
|
|||
|
public string Summary { get; set; }
|
|||
|
public string Default { get; set; }
|
|||
|
public string Type { get; set; }
|
|||
|
}
|
|||
|
}
|