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
11
11
/// The size of the database file on disk in bytes. Views indexes are not included in the calculation.
12
12
/// </summary>
13
13
[ JsonProperty ( "file" ) ]
14
- public int File { get ; internal set ; }
14
+ public long File { get ; internal set ; }
15
15
16
16
/// <summary>
17
17
/// The uncompressed size of database contents in bytes.
18
18
/// </summary>
19
19
[ JsonProperty ( "external" ) ]
20
- public int External { get ; internal set ; }
20
+ public long External { get ; internal set ; }
21
21
22
22
/// <summary>
23
23
/// The size of live data inside the database, in bytes.
24
24
/// </summary>
25
25
[ JsonProperty ( "active" ) ]
26
- public int Active { get ; internal set ; }
26
+ public long Active { get ; internal set ; }
27
27
}
28
28
}
You can’t perform that action at this time.
0 commit comments