fix: Fix conflicting property name for Swagger

This commit is contained in:
sephrat 2022-08-17 09:02:15 +02:00
commit 451e3f00c8

View file

@ -39,6 +39,7 @@ namespace Ombi.Api.Plex.Models
public string grandparentTheme { get; set; }
public string chapterSource { get; set; }
public Medium[] Media { get; set; }
[JsonProperty("Guid")] // force uppercase to solve conflict with lowercase guid
public List<PlexGuids> Guid { get; set; } = new List<PlexGuids>();
}