Interface IIdentifiableOwner<TNestedIdentifiable>
- Namespace
- MonkeyLoader.Meta
- Assembly
- MonkeyLoader.dll
Defines the interface for identifiable items that are the parents of INestedIdentifiables.
public interface IIdentifiableOwner<out TNestedIdentifiable> : IIdentifiable where TNestedIdentifiable : INestedIdentifiable
Type Parameters
TNestedIdentifiable
The type of the nested INestedIdentifiable children.
- Inherited Members
- Extension Methods
Remarks
Rather than implementing this, implement IIdentifiableOwner<TOwner, TNestedIdentifiable>.
Properties
Items
Gets the nested child items.
IEnumerable<out TNestedIdentifiable> Items { get; }
Property Value
- IEnumerable<TNestedIdentifiable>