Files
FileFlowsPlugins/Plex/Models/PlexDirectory.cs
2024-05-07 14:05:03 +12:00

13 lines
273 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; }
}