Update: Community Plugin Library

This commit is contained in:
Gary Sharp
2013-02-12 17:27:06 +11:00
parent 5fd4f34153
commit b24253fd64
10 changed files with 368 additions and 51 deletions
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.BI.Interop.Community
{
public class PluginLibraryCompatibilityResponse
{
public string HostVersion { get; set; }
public DateTime ResponseTimestamp { get; set; }
public List<PluginLibraryCompatibilityItem> Plugins { get; set; }
}
}