mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
12 lines
337 B
C#
12 lines
337 B
C#
namespace Ombi.Services.Models
|
|
{
|
|
public class PlexTvShow
|
|
{
|
|
public string Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string ReleaseYear { get; set; }
|
|
public string ProviderId { get; set; }
|
|
public int[] Seasons { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
}
|