aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IDelayedField.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/IDelayedField.cs')
-rw-r--r--src/WixToolset.Extensibility/IDelayedField.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IDelayedField.cs b/src/WixToolset.Extensibility/IDelayedField.cs
new file mode 100644
index 00000000..a6cc7a2e
--- /dev/null
+++ b/src/WixToolset.Extensibility/IDelayedField.cs
@@ -0,0 +1,13 @@
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.Extensibility
4{
5 using WixToolset.Data;
6
7 public interface IDelayedField
8 {
9 Field Field { get; }
10
11 Row Row { get; }
12 }
13} \ No newline at end of file