File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,18 @@ public sealed class Sizes
1111 /// The size of the database file on disk in bytes. Views indexes are not included in the calculation.
1212 /// </summary>
1313 [ JsonProperty ( "file" ) ]
14- public int File { get ; internal set ; }
14+ public long File { get ; internal set ; }
1515
1616 /// <summary>
1717 /// The uncompressed size of database contents in bytes.
1818 /// </summary>
1919 [ JsonProperty ( "external" ) ]
20- public int External { get ; internal set ; }
20+ public long External { get ; internal set ; }
2121
2222 /// <summary>
2323 /// The size of live data inside the database, in bytes.
2424 /// </summary>
2525 [ JsonProperty ( "active" ) ]
26- public int Active { get ; internal set ; }
26+ public long Active { get ; internal set ; }
2727 }
2828}
You can’t perform that action at this time.
0 commit comments