-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathICsClass.cs
More file actions
37 lines (30 loc) · 1.08 KB
/
ICsClass.cs
File metadata and controls
37 lines (30 loc) · 1.08 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020-2023 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.DotNet.CSharp
{
/// <summary>
/// Model definition for a class in C#.
/// </summary>
public interface ICsClass:ICsNestedContainers,IDotNetClass
{
/// <summary>
/// List of the constructors implemented in this class.
/// </summary>
new IReadOnlyList<CsMethod> Constructors { get; }
/// <summary>
/// The destructor implemented in this class.
/// </summary>
new CsMethod Destructor { get; }
/// <summary>
/// List of the fields implemented in this class.
/// </summary>
new IReadOnlyList<CsField> Fields { get; }
/// <summary>
/// The base class assigned to this class. This will be null if HasBase is false.
/// </summary>
new CsClass BaseClass { get; }
}
}