FastGithub/FastGithub.FlowAnalyze/FlowStatisticsContext.cs
2022-09-20 14:55:55 +08:00

10 lines
209 B
C#

using System.Text.Json.Serialization;
namespace FastGithub.FlowAnalyze
{
[JsonSerializable(typeof(FlowStatistics))]
public partial class FlowStatisticsContext : JsonSerializerContext
{
}
}