WindowsCommunityToolkit/Microsoft.Toolkit.Uwp.UI.An.../Expressions/ExpressionNodes/ValueKeywordKind.cs

22 строки
576 B
C#

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.Toolkit.Uwp.UI.Animations.Expressions
{
/// <summary>
/// Enum ValueKeywordKind
/// </summary>
internal enum ValueKeywordKind
{
/// <summary>
/// The current value
/// </summary>
CurrentValue,
/// <summary>
/// The starting value
/// </summary>
StartingValue,
}
}