begin implementing episodes

This commit is contained in:
StevanFreeborn
2022-06-19 23:07:59 -05:00
parent b4799d41ad
commit a76320df92
9 changed files with 123 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace server.Models
{
public class EpisodeFilter
{
public int? Season { get; set; } = null;
}
}