geekbot/Geekbot.net/Commands/Integrations/UbranDictionary/UrbanDictResponseDto.cs

10 lines
258 B
C#
Raw Normal View History

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