mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
fix(jellyfin): Fixed an issue where the sync could stop working. Removed unused properties so the deseralization no longer fails
This commit is contained in:
parent
588bdffbb4
commit
0e5e0adf86
2 changed files with 0 additions and 44 deletions
|
@ -5,30 +5,8 @@ namespace Ombi.Api.Emby.Models.Movie
|
||||||
public class EmbyMovie
|
public class EmbyMovie
|
||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string ServerId { get; set; }
|
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
public string Container { get; set; }
|
|
||||||
public DateTime PremiereDate { get; set; }
|
|
||||||
public object[] ProductionLocations { get; set; }
|
|
||||||
public string OfficialRating { get; set; }
|
|
||||||
public float CommunityRating { get; set; }
|
|
||||||
public long RunTimeTicks { get; set; }
|
|
||||||
public string PlayAccess { get; set; }
|
|
||||||
public int ProductionYear { get; set; }
|
|
||||||
public bool IsPlaceHolder { get; set; }
|
|
||||||
public bool IsHD { get; set; }
|
|
||||||
public bool IsFolder { get; set; }
|
|
||||||
public string Type { get; set; }
|
public string Type { get; set; }
|
||||||
public int LocalTrailerCount { get; set; }
|
|
||||||
public EmbyUserdata UserData { get; set; }
|
|
||||||
public string VideoType { get; set; }
|
|
||||||
public EmbyImagetags ImageTags { get; set; }
|
|
||||||
public string[] BackdropImageTags { get; set; }
|
|
||||||
public string LocationType { get; set; }
|
|
||||||
public string MediaType { get; set; }
|
|
||||||
public bool HasSubtitles { get; set; }
|
|
||||||
public int CriticRating { get; set; }
|
|
||||||
public string Overview { get; set; }
|
|
||||||
public EmbyProviderids ProviderIds { get; set; }
|
public EmbyProviderids ProviderIds { get; set; }
|
||||||
public EmbyMediastream[] MediaStreams { get; set; }
|
public EmbyMediastream[] MediaStreams { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,30 +5,8 @@ namespace Ombi.Api.Jellyfin.Models.Movie
|
||||||
public class JellyfinMovie
|
public class JellyfinMovie
|
||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string ServerId { get; set; }
|
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
public string Container { get; set; }
|
|
||||||
public DateTime PremiereDate { get; set; }
|
|
||||||
public object[] ProductionLocations { get; set; }
|
|
||||||
public string OfficialRating { get; set; }
|
|
||||||
public float CommunityRating { get; set; }
|
|
||||||
public long RunTimeTicks { get; set; }
|
|
||||||
public string PlayAccess { get; set; }
|
|
||||||
public int ProductionYear { get; set; }
|
|
||||||
public bool IsPlaceHolder { get; set; }
|
|
||||||
public bool IsHD { get; set; }
|
|
||||||
public bool IsFolder { get; set; }
|
|
||||||
public string Type { get; set; }
|
public string Type { get; set; }
|
||||||
public int LocalTrailerCount { get; set; }
|
|
||||||
public JellyfinUserdata UserData { get; set; }
|
|
||||||
public string VideoType { get; set; }
|
|
||||||
public JellyfinImagetags ImageTags { get; set; }
|
|
||||||
public string[] BackdropImageTags { get; set; }
|
|
||||||
public string LocationType { get; set; }
|
|
||||||
public string MediaType { get; set; }
|
|
||||||
public bool HasSubtitles { get; set; }
|
|
||||||
public int CriticRating { get; set; }
|
|
||||||
public string Overview { get; set; }
|
|
||||||
public JellyfinProviderids ProviderIds { get; set; }
|
public JellyfinProviderids ProviderIds { get; set; }
|
||||||
public JellyfinMediastream[] MediaStreams { get; set; }
|
public JellyfinMediastream[] MediaStreams { get; set; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue