mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
13 lines
257 B
C#
13 lines
257 B
C#
using Serein.Library.Utils;
|
|
|
|
namespace Serein.Extend.NewtonsoftJson
|
|
{
|
|
public static class NewtonsoftJsonExtend
|
|
{
|
|
public static string ToJsonText(this object data)
|
|
{
|
|
return JsonHelper.Serialize(data);
|
|
}
|
|
}
|
|
}
|