using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections.ObjectModel; namespace Aiwaz.Contracts { public interface ICreationParams { } public interface IResource { ICreationParams CreationParams { get; } string WellKnownName { get; set; } IResource Parent { get; set; } ObservableCollection Children { get; } } }