10 lines
209 B
C#
10 lines
209 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace FastGithub.FlowAnalyze
|
|
{
|
|
[JsonSerializable(typeof(FlowStatistics))]
|
|
public partial class FlowStatisticsContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|