Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/CouchDB.Driver/Types/Sizes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ public sealed class Sizes
/// The size of the database file on disk in bytes. Views indexes are not included in the calculation.
/// </summary>
[JsonProperty("file")]
public int File { get; internal set; }
public long File { get; internal set; }

/// <summary>
/// The uncompressed size of database contents in bytes.
/// </summary>
[JsonProperty("external")]
public int External { get; internal set; }
public long External { get; internal set; }

/// <summary>
/// The size of live data inside the database, in bytes.
/// </summary>
[JsonProperty("active")]
public int Active { get; internal set; }
public long Active { get; internal set; }
}
}