12 lines
317 B
C#
12 lines
317 B
C#
namespace ErsatzTV.Infrastructure.Plex.Models
|
|
{
|
|
public class PlexResourceConnection
|
|
{
|
|
public string Protocol { get; set; }
|
|
public string Address { get; set; }
|
|
public string Port { get; set; }
|
|
public string Uri { get; set; }
|
|
public string Local { get; set; }
|
|
}
|
|
}
|