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

13 lines
386 B
C#
Raw Normal View History

2020-02-08 15:42:42 +01:00
using System.Collections.Generic;
2018-05-14 02:33:49 +02:00
namespace Geekbot.net.WebApi.Controllers.Commands
{
public class CommandDto
{
public string Name { get; set; }
public string Summary { get; set; }
public bool IsAdminCommand { get; set; }
public List<string> Aliases { get; set; }
public List<CommandParamDto> Params { get; set; }
}
}