Files
Disco/Disco.Models/BI/Interop/Community/PluginLibraryCompatibilityItem.cs
T
2013-02-12 17:27:06 +11:00

17 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.BI.Interop.Community
{
public class PluginLibraryCompatibilityItem
{
public string Id { get; set; }
public string Version { get; set; }
public bool Compatible { get; set; }
public string Reason { get; set; }
}
}