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