-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathCsharpEntity.cs
More file actions
33 lines (30 loc) · 890 Bytes
/
CsharpEntity.cs
File metadata and controls
33 lines (30 loc) · 890 Bytes
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
using System;
namespace DbModel
{
public class CsharpEntity
{
public long Id { get; set; }
public CsharpAstNode? AstNode { get; set; }
public CsharpAstNode? ParentNode{ get; set; }
public long EntityHash { get; set; }
public String? Name { get; set; } = " ";
public String? QualifiedName { get; set; } = " ";
public string? DocumentationCommentXML { get; set; } = " ";
}
public class CsharpTypedEntity : CsharpEntity
{
public long TypeHash { get; set; }
public String? QualifiedType { get; set; } = " ";
}
public enum EtcEntityTypeEnum
{
Event,
Invocation,
ForeachExpr
}
public class CsharpEtcEntity : CsharpTypedEntity
{
public EtcEntityTypeEnum EtcEntityType { get; set; }
public ulong DeclaratorNodeId { get; set; }
}
}