11 lines
292 B
C#
11 lines
292 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class PlexPathReplacement
|
|
{
|
|
public int Id { get; set; }
|
|
public string PlexPath { get; set; }
|
|
public string LocalPath { get; set; }
|
|
public int PlexMediaSourceId { get; set; }
|
|
public PlexMediaSource PlexMediaSource { get; set; }
|
|
}
|