예제 #1
0
파일: File.cs 프로젝트: soroush01110011/MVP
 public File(StorageEngine storage, IFolder folder, IFileMetadata metadata, byte[] content)
     : this(storage, folder, metadata)
 {
     this.Content = content;
 }