-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIDotNetNamespaceReference.cs
More file actions
29 lines (25 loc) · 1.05 KB
/
IDotNetNamespaceReference.cs
File metadata and controls
29 lines (25 loc) · 1.05 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.DotNet
{
/// <summary>
/// A namespace that is being referenced by dot net source code. This will determine which external library resources will be available in the source control document.
/// </summary>
public interface IDotNetNamespaceReference:IDotNetModel,IParent,ILookup
{
/// <summary>
/// The target namespace that is being imported into the sources scope.
/// </summary>
string ReferenceNamespace { get; }
/// <summary>
/// Flag that determines if the namespace reference has an alias.
/// </summary>
bool HasAlias { get; }
/// <summary>
/// The alias assigned to the namespace being imported. This will be null if the <see cref="HasAlias"/> is false.
/// </summary>
string Alias { get; }
}
}