ImageByNameInfo.cs 976 B

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