We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e30e44 commit 767b2adCopy full SHA for 767b2ad
1 file changed
FastGithub.FlowAnalyze/FlowStatistics.cs
@@ -8,21 +8,21 @@ public record FlowStatistics
8
/// <summary>
9
/// 获取总读上行
10
/// </summary>
11
- public long TotalRead { get; init; }
+ public long TotalRead { get; set; }
12
13
14
/// 获取总下行
15
16
- public long TotalWrite { get; init; }
+ public long TotalWrite { get; set; }
17
18
19
/// 获取读取速率
20
21
- public double ReadRate { get; init; }
+ public double ReadRate { get; set; }
22
23
24
/// 获取写入速率
25
26
- public double WriteRate { get; init; }
+ public double WriteRate { get; set; }
27
}
28
0 commit comments