Merge pull request #478 from vortex852456/main

Fix: Changed "Chapter" Modell
This commit is contained in:
Malte Rosenbjerg 2023-10-25 19:03:15 +02:00 committed by GitHub
commit eb221c3e49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,19 +135,19 @@ public class Format : ITagsContainer
public class Chapter : ITagsContainer public class Chapter : ITagsContainer
{ {
[JsonPropertyName("id")] [JsonPropertyName("id")]
public int Id { get; set; } public long Id { get; set; }
[JsonPropertyName("time_base")] [JsonPropertyName("time_base")]
public string TimeBase { get; set; } = null!; public string TimeBase { get; set; } = null!;
[JsonPropertyName("start")] [JsonPropertyName("start")]
public int Start { get; set; } public long Start { get; set; }
[JsonPropertyName("start_time")] [JsonPropertyName("start_time")]
public string StartTime { get; set; } = null!; public string StartTime { get; set; } = null!;
[JsonPropertyName("end")] [JsonPropertyName("end")]
public int End { get; set; } public long End { get; set; }
[JsonPropertyName("end_time")] [JsonPropertyName("end_time")]
public string EndTime { get; set; } = null!; public string EndTime { get; set; } = null!;