forked from codecadwallader/codemaid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnapshotCodeItems.cs
More file actions
39 lines (32 loc) · 1.03 KB
/
SnapshotCodeItems.cs
File metadata and controls
39 lines (32 loc) · 1.03 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
using EnvDTE;
namespace SteveCadwallader.CodeMaid.Model.CodeItems
{
/// <summary>
/// A snapshot of a document and its associated code items at a point in time.
/// </summary>
internal class SnapshotCodeItems
{
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="SnapshotCodeItems" /> class.
/// </summary>
/// <param name="document">The document.</param>
/// <param name="codeItems">The code items.</param>
internal SnapshotCodeItems(Document document, SetCodeItems codeItems)
{
Document = document;
CodeItems = codeItems;
}
#endregion Constructors
#region Properties
/// <summary>
/// Gets the document.
/// </summary>
internal Document Document { get; private set; }
/// <summary>
/// Gets the code items.
/// </summary>
internal SetCodeItems CodeItems { get; private set; }
#endregion Properties
}
}