// 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.Core
{
using WixToolset.Extensibility.Services;
internal class VariableResolution : IVariableResolution
{
///
/// Indicates whether the variable should be delay resolved.
///
public bool DelayedResolve { get; set; }
///
/// Indicates whether the value is the default value of the variable.
///
public bool IsDefault { get; set; }
///
/// Indicates whether the value changed.
///
public bool UpdatedValue { get; set; }
///
/// Resolved value.
///
public string Value { get; set; }
}
}