geekbot/src/Bot/Commands/Integrations/UbranDictionary/UrbanDictResponseDto.cs

10 lines
No EOL
258 B
C#

using System.Collections.Generic;
namespace Geekbot.Bot.Commands.Integrations.UbranDictionary
{
internal class UrbanResponseDto
{
public string[] Tags { get; set; }
public List<UrbanListItemDto> List { get; set; }
}
}