-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathICsNestedContainers.cs
More file actions
40 lines (34 loc) · 1.31 KB
/
ICsNestedContainers.cs
File metadata and controls
40 lines (34 loc) · 1.31 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) 2023 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.DotNet.CSharp
{
/// <summary>
/// Definition of the container types that can be nested in other containers.
/// </summary>
public interface ICsNestedContainers:ICsContainer,IDotNetNestedContainers
{
/// <summary>
/// Models that are nested in the implementation of this container.
/// </summary>
new IReadOnlyList<ICsNestedModel> NestedModels { get; }
/// <summary>
/// Classes that are nested in this container.
/// </summary>
new IReadOnlyList<CsClass> NestedClasses { get; }
/// <summary>
/// Interfaces that are nested in this container.
/// </summary>
new IReadOnlyList<CsInterface> NestedInterfaces { get; }
/// <summary>
/// Structures that are nested in this container.
/// </summary>
new IReadOnlyList<CsStructure> NestedStructures { get; }
/// <summary>
/// Enums that are nested in this container.
/// </summary>
new IReadOnlyList<CsEnum> NestedEnums { get; }
}
}