mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
13 lines
257 B
C#
13 lines
257 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PlexRequests.Api.Models.Tv
|
|
{
|
|
public class TvMazeSeasons : TvMazeShow
|
|
{
|
|
public int number { get; set; }
|
|
}
|
|
}
|