mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Upcoming shows view added.
This commit is contained in:
parent
33b09567ce
commit
6c818bd8d8
9 changed files with 282 additions and 0 deletions
15
NzbDrone.Core/Model/UpcomingEpisodesModel.cs
Normal file
15
NzbDrone.Core/Model/UpcomingEpisodesModel.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue