ImageByNameInfo.cs 923 B

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