15 changed files with 70 additions and 36 deletions
@ -0,0 +1,21 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="ILogical.cs" company="Steven Kirk">
|
|||
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
public interface ILogical |
|||
{ |
|||
ILogical LogicalParent { get; set; } |
|||
|
|||
IEnumerable<ILogical> LogicalChildren { get; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue