mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-20 08:16:34 +08:00
19 lines
417 B
C#
19 lines
417 B
C#
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Serein.Library.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.Extend.NewtonsoftJson
|
|
{
|
|
public static class NewtonsoftJsonExtend
|
|
{
|
|
public static string ToJsonText(this object data)
|
|
{
|
|
return JsonHelper.Serialize(data);
|
|
}
|
|
}
|
|
}
|