using System; using System.Collections.Generic; using InABox.Core; using InABox.Integration.Logikal; namespace PRSDesktop.Integrations.Logikal { public class LogikalProjectCentre : LogikalItem, ILogikalProjectCentre { public Guid ID { get; set; } [Caption("Folders")] public string Name { get; set; } public Guid ParentID { get; set; } public IEnumerable Projects { get; set; } public override void ValidateQuery(string sql, List errors) { } } }