MediaChapter.cs 844 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma warning disable CS1591
  2. using System.Collections.Generic;
  3. using System.Text.Json.Serialization;
  4. namespace MediaBrowser.MediaEncoding.Probing
  5. {
  6. /// <summary>
  7. /// Class MediaChapter.
  8. /// </summary>
  9. public class MediaChapter
  10. {
  11. [JsonPropertyName("id")]
  12. public int Id { get; set; }
  13. [JsonPropertyName("time_base")]
  14. public string TimeBase { get; set; }
  15. [JsonPropertyName("start")]
  16. public long Start { get; set; }
  17. [JsonPropertyName("start_time")]
  18. public string StartTime { get; set; }
  19. [JsonPropertyName("end")]
  20. public long End { get; set; }
  21. [JsonPropertyName("end_time")]
  22. public string EndTime { get; set; }
  23. [JsonPropertyName("tags")]
  24. public IReadOnlyDictionary<string, string> Tags { get; set; }
  25. }
  26. }