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; } /// /// This is used for the PlexAvailabilityCheck rule /// /// /// The custom identifier. /// [NotMapped] public string CustomId { get; set; } } }