| 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.Data |
| 4 | { |
| 5 | using System; |
| 6 | |
| 7 | public class IntermediateFieldPathValue |
| 8 | { |
| 9 | /// <summary> |
| 10 | /// Indicates whether to embed the path to the file when the intermediate field is saved. |
| 11 | /// </summary> |
| 12 | public bool Embed { get; set; } |
| 13 | |
| 14 | /// <summary> |
| 15 | /// Gets the base URI of the path field. |
| 16 | /// </summary> |
| 17 | /// <value>The base URI of the path field.</value> |
| 18 | public Uri BaseUri { get; set; } |
| 19 | |
| 20 | /// <summary> |
| 21 | /// Gets or sets the data for this field. |
| 22 | /// </summary> |
| 23 | /// <value>Data in the field.</value> |
| 24 | public string Path { get; set; } |
| 25 | } |
| 26 | } |