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