ImageByNameInfo.cs 926 B

1234567891011121314151617181920212223242526272829303132
  1. 
  2. namespace MediaBrowser.Model.Dto
  3. {
  4. public class ImageByNameInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the name.
  8. /// </summary>
  9. /// <value>The name.</value>
  10. public string Name { get; set; }
  11. /// <summary>
  12. /// Gets or sets the theme.
  13. /// </summary>
  14. /// <value>The theme.</value>
  15. public string Theme { get; set; }
  16. /// <summary>
  17. /// Gets or sets the context.
  18. /// </summary>
  19. /// <value>The context.</value>
  20. public string Context { get; set; }
  21. /// <summary>
  22. /// Gets or sets the length of the file.
  23. /// </summary>
  24. /// <value>The length of the file.</value>
  25. public long FileLength { get; set; }
  26. /// <summary>
  27. /// Gets or sets the format.
  28. /// </summary>
  29. /// <value>The format.</value>
  30. public string Format { get; set; }
  31. }
  32. }