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.
24 lines
686 B
24 lines
686 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
public class Episode
|
|
{
|
|
public string SeriesId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Title2 { get; set; }
|
|
public int Season { get; set; }
|
|
public int EpisodeNumber { get; set; }
|
|
public int EpisodeNumber2 { get; set; }
|
|
public DateTime AirDate { get; set; }
|
|
public string Release { get; set; }
|
|
public int Quality { get; set; }
|
|
public bool Proper { get; set; }
|
|
public String FileName { get; set; }
|
|
}
|
|
}
|