mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
15 lines
326 B
C#
15 lines
326 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.Abstractions.Utility.Numeric;
|
|
|
|
/// <summary>
|
|
/// 数值显示风格。
|
|
/// </summary>
|
|
public enum NumericDisplayStyle
|
|
{
|
|
/// <summary>
|
|
/// 紧凑缩写风格,例如 1.2K / 3.4M。
|
|
/// </summary>
|
|
Compact = 0
|
|
} |