mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
The move!
This commit is contained in:
parent
1daf480b1b
commit
25526cc4d9
1147 changed files with 85 additions and 8524 deletions
26
src/Ombi.Api.Plex/Models/Mediacontainer.cs
Normal file
26
src/Ombi.Api.Plex/Models/Mediacontainer.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Ombi.Api.Plex.Models
|
||||
{
|
||||
public class Mediacontainer
|
||||
{
|
||||
public int size { get; set; }
|
||||
public bool allowSync { get; set; }
|
||||
public string identifier { get; set; }
|
||||
public string mediaTagPrefix { get; set; }
|
||||
public int mediaTagVersion { get; set; }
|
||||
public string title1 { get; set; }
|
||||
public List<Directory> Directory { get; set; }
|
||||
public string art { get; set; }
|
||||
public int librarySectionID { get; set; }
|
||||
public string librarySectionTitle { get; set; }
|
||||
public string librarySectionUUID { get; set; }
|
||||
public bool nocache { get; set; }
|
||||
public string thumb { get; set; }
|
||||
public string title2 { get; set; }
|
||||
public string viewGroup { get; set; }
|
||||
public int viewMode { get; set; }
|
||||
public Metadata[] Metadata { get; set; }
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue