CPF/CPF.Windows/Json/Formatter/Internal/JsonCharacterReadStateEnum.cs
2023-11-21 23:05:03 +08:00

32 lines
867 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace CPF.Windows.Json
{
/// <summary>
/// 对Model中的字符读取状态默认、首字母大写、首字母小写、忽略大小写
/// Read status for characters in the Model: Default, Initial uppercase, Initial lowercase, Ignore case
/// </summary>
public enum JsonCharacterReadStateEnum
{
/// <summary>
/// 默认
/// Default
/// </summary>
None,
/// <summary>
/// 首字母大写
/// Initial uppercase
/// </summary>
InitialUpper,
/// <summary>
/// 首字母小写
/// Initial lowercase
/// </summary>
InitialLower,
/// <summary>
/// 仅反序列化时使用,忽略大小写
/// Used only for deserialization ,Ignore case
/// </summary>
IgnoreCase
}
}