CPF/CPF.Windows/Json/Formatter/Deserializer/JArray.cs

12 lines
176 B
C#
Raw Permalink Normal View History

2023-11-21 23:05:03 +08:00
using System.Collections.Generic;
namespace CPF.Windows.Json
{
/// <summary>
/// Json Array
/// </summary>
public class JArray : List<object>
{
}
}