From 7efd412cda00b369bc331c9bedd8db971d98fee7 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 18 Oct 2017 15:21:45 -0700 Subject: Incorporate refactoring of WixToolset.Core assemblies --- src/WixToolset.Extensibility/Identifier.cs | 31 ------------------------------ 1 file changed, 31 deletions(-) delete mode 100644 src/WixToolset.Extensibility/Identifier.cs (limited to 'src/WixToolset.Extensibility/Identifier.cs') 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 @@ -// 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. - -namespace WixToolset.Extensibility -{ - using System; - using WixToolset.Data; - - /// - /// Class to define the identifier and access for a row. - /// - public class Identifier - { - public static Identifier Invalid = new Identifier(null, AccessModifier.Private); - - public Identifier(string id, AccessModifier access) - { - this.Id = id; - this.Access = access; - } - - /// - /// Access modifier for a row. - /// - public AccessModifier Access { get; private set; } - - /// - /// Identifier for the row. - /// - public string Id { get; private set; } - } -} -- cgit v1.2.3-55-g6feb