You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/src/NzbDrone.Core/Notifications/Plex/PlexTv/PlexTvResource.cs

14 lines
405 B

namespace NzbDrone.Core.Notifications.Plex.PlexTv
{
public class PlexTvResource
{
public string Name { get; set; }
public string Product { get; set; }
public string Platform { get; set; }
public string ClientIdentifier { get; set; }
public string Provides { get; set; }
public bool Owned { get; set; }
public bool Home { get; set; }
}
}