mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-04 14:00:40 -06:00
16 lines
315 B
C#
16 lines
315 B
C#
namespace FileFlows.Plex.Models;
|
|
|
|
internal class PlexMedia
|
|
{
|
|
public string RatingKey { get; set; }
|
|
public int Id { get; set; }
|
|
public PlexPart[] Part { get; set; }
|
|
}
|
|
|
|
internal class PlexPart
|
|
{
|
|
public int Id { get; set; }
|
|
public string Key { get; set; }
|
|
public string File { get; set; }
|
|
}
|