-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIDotNetNestedContainers.cs
More file actions
40 lines (34 loc) · 1.3 KB
/
IDotNetNestedContainers.cs
File metadata and controls
40 lines (34 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.DotNet
{
/// <summary>
/// Definition of the container types that can be nested in other containers.
/// </summary>
public interface IDotNetNestedContainers:IDotNetContainer
{
/// <summary>
/// Models that are nested in the implementation of this container.
/// </summary>
IReadOnlyList<IDotNetNestedModel> NestedModels { get; }
/// <summary>
/// Classes that are nested in this container.
/// </summary>
IReadOnlyList<IDotNetClass> NestedClasses { get; }
/// <summary>
/// Interfaces that are nested in this container.
/// </summary>
IReadOnlyList<IDotNetInterface> NestedInterfaces { get; }
/// <summary>
/// Structures that are nested in this container.
/// </summary>
IReadOnlyList<IDotNetStructure> NestedStructures { get; }
/// <summary>
/// Enums that are nested in this container.
/// </summary>
IReadOnlyList<IDotNetEnum> NestedEnums { get; }
}
}