mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 03:28:28 -07:00
10 lines
266 B
C#
10 lines
266 B
C#
namespace PlexRequests.Services.Models
|
|
{
|
|
public class PlexTvShow
|
|
{
|
|
public string Title { get; set; }
|
|
public string ReleaseYear { get; set; }
|
|
public string ProviderId { get; set; }
|
|
public int[] Seasons { get; set; }
|
|
}
|
|
}
|