FastGithub/FastGithub.FlowAnalyze/FlowRate.cs
2021-10-28 17:43:26 +08:00

10 lines
173 B
C#

namespace FastGithub.FlowAnalyze
{
public record FlowRate
{
public double ReadRate { get; init; }
public double WriteRate { get; init; }
}
}