mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
16 lines
381 B
C#
16 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
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; }
|
|
}
|
|
}
|