示例#1
0
        public IBackloadStorageProviderFile Update(IBackloadStorageProviderFile file)
        {
            this.RowId      = file.RowId;
            this.Id         = file.Id;
            this.Name       = file.Name;
            this.Original   = file.Original;
            this.Type       = file.Type;
            this.Size       = file.Size;
            this.UploadTime = file.UploadTime;
            this.Data       = file.Data;
            this.Preview    = file.Preview;
            this.Path       = file.Path;
            this.Meta       = file.Meta;



            return(this);
        }
示例#2
0
 public File(IBackloadStorageProviderFile file)
 {
     this.Update(file);
 }