// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
namespace GFramework.Core.Abstractions.Utility.Numeric;
///
/// 数值缩写阈值定义。
///
/// 缩写除数,例如 1000、1000000。
/// 缩写后缀,例如 K、M。
public readonly record struct NumericSuffixThreshold(decimal Divisor, string Suffix);