We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e35c992 + 1f70e51 commit 74a593eCopy full SHA for 74a593e
src/CouchDB.Driver/Types/Sizes.cs
@@ -11,18 +11,18 @@ public sealed class Sizes
11
/// The size of the database file on disk in bytes. Views indexes are not included in the calculation.
12
/// </summary>
13
[JsonProperty("file")]
14
- public int File { get; internal set; }
+ public long File { get; internal set; }
15
16
/// <summary>
17
/// The uncompressed size of database contents in bytes.
18
19
[JsonProperty("external")]
20
- public int External { get; internal set; }
+ public long External { get; internal set; }
21
22
23
/// The size of live data inside the database, in bytes.
24
25
[JsonProperty("active")]
26
- public int Active { get; internal set; }
+ public long Active { get; internal set; }
27
}
28
0 commit comments