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

9 lines
No EOL
238 B
C#

namespace Geekbot.net.WebApi.Controllers.Commands
{
public class CommandParamDto
{
public string Summary { get; set; }
public string Default { get; set; }
public string Type { get; set; }
}
}