mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-20 13:39:49 -06:00
13 lines
238 B
C#
13 lines
238 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; }
|
|
}
|