mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-20 03:50:07 -06:00
13 lines
272 B
C#
13 lines
272 B
C#
namespace FileFlows.Plex.Models;
|
|
|
|
internal class PlexDirectory
|
|
{
|
|
public string Key { get; set; }
|
|
public PlexDirectoryLocation[] Location { get; set; }
|
|
}
|
|
|
|
public class PlexDirectoryLocation
|
|
{
|
|
public int Id { get; set; }
|
|
public string Path { get; set; }
|
|
} |