// 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.Data { using System; public class IntermediateFieldPathValue { /// /// Gets or sets the index of the embedded file in a library. /// /// The index of the embedded file. public int? EmbeddedFileIndex { get; set; } /// /// Gets the base URI of the path field. /// /// The base URI of the path field. public Uri BaseUri { get; set; } /// /// Gets or sets the data for this field. /// /// Data in the field. public string Path { get; set; } } }