aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Identifier.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Identifier.cs')
-rw-r--r--src/WixToolset.Extensibility/Identifier.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/WixToolset.Extensibility/Identifier.cs b/src/WixToolset.Extensibility/Identifier.cs
deleted file mode 100644
index 628cd335..00000000
--- a/src/WixToolset.Extensibility/Identifier.cs
+++ /dev/null
@@ -1,31 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Extensibility
4{
5 using System;
6 using WixToolset.Data;
7
8 /// <summary>
9 /// Class to define the identifier and access for a row.
10 /// </summary>
11 public class Identifier
12 {
13 public static Identifier Invalid = new Identifier(null, AccessModifier.Private);
14
15 public Identifier(string id, AccessModifier access)
16 {
17 this.Id = id;
18 this.Access = access;
19 }
20
21 /// <summary>
22 /// Access modifier for a row.
23 /// </summary>
24 public AccessModifier Access { get; private set; }
25
26 /// <summary>
27 /// Identifier for the row.
28 /// </summary>
29 public string Id { get; private set; }
30 }
31}