geekbot/Geekbot.net/WebApi/Controllers/Commands/CommandParamDto.cs

9 lines
238 B
C#
Raw Normal View History

2018-05-14 02:33:49 +02:00
namespace Geekbot.net.WebApi.Controllers.Commands
{
public class CommandParamDto
{
public string Summary { get; set; }
public string Default { get; set; }
public string Type { get; set; }
}
}