mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
14 lines
479 B
14 lines
479 B
namespace ErsatzTV.Core.Domain; |
|
|
|
public class PlexMediaSource : MediaSource |
|
{ |
|
public string ServerName { get; set; } |
|
public string ProductVersion { get; set; } |
|
public string Platform { get; set; } |
|
public string PlatformVersion { get; set; } |
|
public string ClientIdentifier { get; set; } |
|
|
|
// public bool IsOwned { get; set; } |
|
public List<PlexConnection> Connections { get; set; } |
|
public List<PlexPathReplacement> PathReplacements { get; set; } |
|
}
|
|
|