geekbot/Geekbot.net/Commands/Integrations/Google/GoogleKgApiResultDto.cs

10 lines
338 B
C#
Raw Normal View History

namespace Geekbot.net.Commands.Integrations.Google
{
public class GoogleKgApiResultDto
{
public string Name { get; set; }
public string Description { get; set; }
public GoogleKgApiImageDto ImageDto { get; set; }
public GoogleKgApiDetailedDto DetailedDtoDescription { get; set; }
}
}