mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-04-29 09:19:09 -05:00
13 lines
270 B
C#
13 lines
270 B
C#
namespace FileFlows.Plex.Models;
|
|
|
|
public 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; }
|
|
} |