mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 21:40:41 +00:00
17 lines
450 B
C#
17 lines
450 B
C#
|
|
/******************************************/
|
|||
|
|
/* */
|
|||
|
|
/* Copyright (c) 2018 monitor1394 */
|
|||
|
|
/* https://github.com/monitor1394 */
|
|||
|
|
/* */
|
|||
|
|
/******************************************/
|
|||
|
|
|
|||
|
|
namespace XCharts
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 从json导入数据接口
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IJsonData
|
|||
|
|
{
|
|||
|
|
void ParseJsonData(string json);
|
|||
|
|
}
|
|||
|
|
}
|