Files
ersatztv/ErsatzTV.Infrastructure/Plex/Models/PlexResourceConnection.cs
T
2021-02-08 21:13:53 -06:00

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; }
}
}