mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 02:30:01 -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; }
|
|
}
|