mirror of https://github.com/ErsatzTV/ErsatzTV.git
7 changed files with 41 additions and 6 deletions
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
using System.Xml.Serialization; |
||||
|
||||
namespace ErsatzTV.Infrastructure.Plex.Models; |
||||
|
||||
public class PlexChapterResponse |
||||
{ |
||||
[XmlAttribute("id")] |
||||
public int Id { get; set; } |
||||
|
||||
[XmlAttribute("index")] |
||||
public int Index { get; set; } |
||||
|
||||
[XmlAttribute("startTimeOffset")] |
||||
public long StartTimeOffset { get; set; } |
||||
|
||||
[XmlAttribute("endTimeOffset")] |
||||
public long EndTimeOffset { get; set; } |
||||
} |
Loading…
Reference in new issue