mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-01 14:10:19 -06:00
9 lines
193 B
C#
9 lines
193 B
C#
namespace FileFlows.Plex.Models;
|
|
|
|
internal class PlexMetadata
|
|
{
|
|
public string? RatingKey { get; set; }
|
|
public string? Key { get; set; }
|
|
public PlexMedia[]? Media { get; set; }
|
|
}
|