diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-10-18 15:21:45 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-10-18 15:21:45 -0700 |
| commit | 7efd412cda00b369bc331c9bedd8db971d98fee7 (patch) | |
| tree | 20403b9a5372db2407200cefab1eed0bdcc19879 /src/WixToolset.Extensibility/Identifier.cs | |
| parent | 475dd063933b8a23d8e47021e9b105a20699bbac (diff) | |
| download | wix-7efd412cda00b369bc331c9bedd8db971d98fee7.tar.gz wix-7efd412cda00b369bc331c9bedd8db971d98fee7.tar.bz2 wix-7efd412cda00b369bc331c9bedd8db971d98fee7.zip | |
Incorporate refactoring of WixToolset.Core assemblies
Diffstat (limited to 'src/WixToolset.Extensibility/Identifier.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Identifier.cs | 31 |
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 | |||
| 3 | namespace 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 | } | ||
