mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 16:52:56 -07:00
13 lines
380 B
C#
13 lines
380 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; }
|
|
public string ItemId { get; set; }
|
|
}
|
|
}
|