-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIDotNetMember.cs
More file actions
30 lines (26 loc) · 919 Bytes
/
IDotNetMember.cs
File metadata and controls
30 lines (26 loc) · 919 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
using CodeFactory.SourceCode;
namespace CodeFactory.DotNet
{
/// <summary>
/// Base definition for all .net member models.
/// </summary>
public interface IDotNetMember:IDotNetModel,ISourceFiles,IDotNetAttributes,IDocumentation,IParent,ILookup
{
/// <summary>
/// The name assigned to the member.
/// </summary>
string Name { get; }
/// <summary>
/// The security scope that has been assigned to the member.
/// </summary>
DotNetSecurity Security { get; }
/// <summary>
/// The type of member the model is.
/// </summary>
DotNetMemberType MemberType { get; }
}
}