mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 16:22:55 -07:00
12 lines
336 B
C#
12 lines
336 B
C#
namespace Ombi.Services.Models
|
|
{
|
|
public class PlexAlbum
|
|
{
|
|
public string Title { get; set; }
|
|
public string Artist { get; set; }
|
|
public string ReleaseYear { get; set; }
|
|
public string Url { get; set; }
|
|
public string ProviderId { get; set; }
|
|
public string Id { get; set; }
|
|
}
|
|
}
|