Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace Models
  6. {
  7. public class FileInfoResponse
  8. {
  9. // this will hold container information
  10. // page size information
  11. // current page
  12. public Dictionary<string, string> MetaCollection { get; set; }
  13.  
  14. public FileInfo[] Files { get; set; }
  15.  
  16. public PageResultInformation PageInformation { get; set; }
  17.  
  18. // Part of the file location without the
  19. // blob storage url
  20. public string UrlPart { get; set; }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement