mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
12 lines
No EOL
304 B
C#
12 lines
No EOL
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; }
|
|
}
|
|
} |