mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-04-29 09:19:09 -05:00
14 lines
290 B
C#
14 lines
290 B
C#
namespace FileFlows.Plex.Models;
|
|
|
|
internal class PlexSections
|
|
{
|
|
public PlexSection? MediaContainer { get; set; }
|
|
}
|
|
|
|
internal class PlexSection
|
|
{
|
|
public int Size { get; set; }
|
|
public PlexDirectory[]? Directory { get; set; }
|
|
public PlexMetadata[]? Metadata { get; set; }
|
|
}
|