You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.Emby/Models/LibraryVirtualFolders.cs

27 lines
562 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ombi.Api.Emby.Models
{
public class LibraryVirtualFolders
{
public string Name { get; set; }
public Libraryoptions LibraryOptions { get; set; }
public string ItemId { get; set; }
}
public class Libraryoptions
{
public List<Typeoption> TypeOptions { get; set; } = new List<Typeoption>();
}
public class Typeoption
{
public string Type { get; set; }
}
}