geekbot/Geekbot.net/WebApi/Status/ApiStatusDto.cs

9 lines
233 B
C#
Raw Normal View History

namespace Geekbot.net.WebApi.Status
{
public class ApiStatusDto
{
public string GeekbotVersion { get; set; }
public string ApiVersion { get; set; }
public string Status { get; set; }
}
}