using System; using System.Collections.Generic; using System.IO; namespace LeanCloud.Storage.Internal { public class FileState { public string ObjectId { get; internal set; } public string Name { get; internal set; } public string CloudName { get; set; } public string MimeType { get; internal set; } public Uri Url { get; internal set; } public IDictionary MetaData { get; internal set; } public long Size { get; internal set; } public long FixedChunkSize { get; internal set; } public int counter; public Stream frozenData; public string bucketId; public string bucket; public string token; public long completed; public List block_ctxes = new List(); } }