10 lines
173 B
C#
10 lines
173 B
C#
namespace FastGithub.FlowAnalyze
|
|
{
|
|
public record FlowRate
|
|
{
|
|
public double ReadRate { get; init; }
|
|
|
|
public double WriteRate { get; init; }
|
|
}
|
|
}
|