ItemFIleInfo.cs 950 B

123456789101112131415161718192021222324252627282930313233
  1. using MediaBrowser.Model.Entities;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class ItemFileInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the type.
  8. /// </summary>
  9. /// <value>The type.</value>
  10. public ItemFileType Type { get; set; }
  11. /// <summary>
  12. /// Gets or sets the name.
  13. /// </summary>
  14. /// <value>The name.</value>
  15. public string Name { get; set; }
  16. /// <summary>
  17. /// Gets or sets the path.
  18. /// </summary>
  19. /// <value>The path.</value>
  20. public string Path { get; set; }
  21. /// <summary>
  22. /// Gets or sets the type of the image.
  23. /// </summary>
  24. /// <value>The type of the image.</value>
  25. public ImageType? ImageType { get; set; }
  26. /// <summary>
  27. /// Gets or sets the index.
  28. /// </summary>
  29. /// <value>The index.</value>
  30. public int Index { get; set; }
  31. }
  32. }