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.Lidarr/Models/Search.cs

13 lines
294 B

using System;
using System.Net.Mime;
namespace Ombi.Api.Lidarr.Models
{
public class Search
{
public ArtistLookup artist { get; set; }
public AlbumLookup album { get; set; }
public string foreignId { get; set; }
public string id { get; set; }
}
}