Node.cs 293 B

12345678910
  1. // Copyright (c) .NET Foundation. All rights reserved.
  2. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
  3. namespace Ignitor
  4. {
  5. internal abstract class Node
  6. {
  7. public virtual ContainerNode Parent { get; set; }
  8. }
  9. }