aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/IntermediateFieldPathValue.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/IntermediateFieldPathValue.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/WixToolset.Data/IntermediateFieldPathValue.cs b/src/WixToolset.Data/IntermediateFieldPathValue.cs
new file mode 100644
index 00000000..7d4fcdfe
--- /dev/null
+++ b/src/WixToolset.Data/IntermediateFieldPathValue.cs
@@ -0,0 +1,27 @@
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
3namespace WixToolset.Data
4{
5 using System;
6
7 public class IntermediateFieldPathValue
8 {
9 /// <summary>
10 /// Gets or sets the index of the embedded file in a library.
11 /// </summary>
12 /// <value>The index of the embedded file.</value>
13 public int? EmbeddedFileIndex { get; set; }
14
15 /// <summary>
16 /// Gets the base URI of the path field.
17 /// </summary>
18 /// <value>The base URI of the path field.</value>
19 public Uri BaseUri { get; set; }
20
21 /// <summary>
22 /// Gets or sets the data for this field.
23 /// </summary>
24 /// <value>Data in the field.</value>
25 public string Path { get; set; }
26 }
27}