mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
18 lines
419 B
C#
18 lines
419 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using NzbDrone.Core.MediaFiles;
|
||
|
using NzbDrone.Core.Tv;
|
||
|
|
||
|
namespace NzbDrone.Core.Organizer
|
||
|
{
|
||
|
public class SampleResult
|
||
|
{
|
||
|
public string Filename { get; set; }
|
||
|
public Series Series { get; set; }
|
||
|
public List<Episode> Episodes { get; set; }
|
||
|
public EpisodeFile EpisodeFile { get; set; }
|
||
|
}
|
||
|
}
|