mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 12:40:12 +00:00
10 lines
179 B
C#
10 lines
179 B
C#
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// 从json导入数据接口
|
|
/// </summary>
|
|
public interface IJsonData
|
|
{
|
|
void ParseJsonData(string json);
|
|
}
|
|
} |