// 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 { /// /// Indicates whether to embed the path to the file when the intermediate field is saved. /// public bool Embed { 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; } } }