mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 16:22:55 -07:00
24 lines
No EOL
641 B
C#
24 lines
No EOL
641 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Ombi.Core.Models.Search
|
|
{
|
|
public class SearchViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public bool Approved { get; set; }
|
|
public bool Requested { get; set; }
|
|
public bool Available { get; set; }
|
|
public string PlexUrl { get; set; }
|
|
public string Quality { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// This is used for the PlexAvailabilityCheck rule
|
|
/// </summary>
|
|
/// <value>
|
|
/// The custom identifier.
|
|
/// </value>
|
|
[NotMapped]
|
|
public string CustomId { get; set; }
|
|
}
|
|
} |