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

10 lines
335 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; }
2018-05-04 00:59:49 +02:00
public GoogleKgApiImageDto Image { get; set; }
public GoogleKgApiDetailedDto DetailedDtoDescription { get; set; }
}
}