mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
12 lines
304 B
C#
12 lines
304 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Model
|
|
{
|
|
public class UpcomingEpisodesModel
|
|
{
|
|
public List<Episode> Yesterday { get; set; }
|
|
public List<Episode> Today { get; set; }
|
|
public List<Episode> Week { get; set; }
|
|
}
|
|
} |