[PT Run] Registry plugin (#7951)

This commit is contained in:
Tobias Sekan
2021-01-20 19:15:45 +01:00
committed by GitHub
parent da33d22c85
commit a434d6047f
27 changed files with 2053 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.PowerToys.Run.Plugin.Registry.Enumerations
{
/// <summary>
/// The truncate side for a to long text
/// </summary>
internal enum TruncateSide
{
/// <summary>
/// Truncate a text only from the right side
/// </summary>
OnlyFromLeft,
/// <summary>
/// Truncate a text only from the left side
/// </summary>
OnlyFromRight,
}
}