jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/General/Job.cs

15 lines
295 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
public class Job
{
[JsonProperty("department")]
public string Department { get; set; }
[JsonProperty("jobs")]
public List<string> Jobs { get; set; }
}
}