// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
using GFramework.Core.SourceGenerators.Abstractions.Enums;
namespace GFramework.Game.Config;
///
/// 表示当前 Runtime / Generator / Tooling 共享支持的字符串 format 子集。
///
[GenerateEnumExtensions]
internal enum YamlConfigStringFormatKind
{
///
/// 表示 yyyy-MM-dd 形式的日期。
///
Date,
///
/// 表示带显式时区偏移的 RFC 3339 日期时间。
///
DateTime,
///
/// 表示 day-time duration 形式的持续时间。
///
Duration,
///
/// 表示基础电子邮件地址格式。
///
Email,
///
/// 表示带显式时区偏移的 RFC 3339 时间。
///
Time,
///
/// 表示绝对 URI。
///
Uri,
///
/// 表示连字符分隔的 UUID 文本。
///
Uuid
}