Files
ersatztv/ErsatzTV.Infrastructure/Plex/Models/PlexResourceConnection.cs
T
Jason DoveandGitHub c02b83d0d6 code cleanup (#743)
* update tools

* run code cleanup

* update dependencies
2022-04-19 17:47:18 -05:00

11 lines
278 B
C#

namespace ErsatzTV.Infrastructure.Plex.Models;
public class PlexResourceConnection
{
public string Protocol { get; set; }
public string Address { get; set; }
public int Port { get; set; }
public string Uri { get; set; }
public bool Local { get; set; }
}