mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Due to forthcoming changes to the Jellyfin API, this adds support for Jellyfin as server type completely independent from Emby. It also undoes the workarounds that treated Jellyfin as a subset of Emby.
13 lines
311 B
C#
13 lines
311 B
C#
namespace Ombi.Api.Emby.Models
|
|
{
|
|
public class PublicInfo
|
|
{
|
|
public string LocalAddress { get; set; }
|
|
public string ServerName { get; set; }
|
|
public string Version { get; set; }
|
|
|
|
public string OperatingSystem { get; set; }
|
|
public string Id { get; set; }
|
|
}
|
|
|
|
}
|