11 lines
292 B
C#
11 lines
292 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class EmbyPathReplacement
|
|
{
|
|
public int Id { get; set; }
|
|
public string EmbyPath { get; set; }
|
|
public string LocalPath { get; set; }
|
|
public int EmbyMediaSourceId { get; set; }
|
|
public EmbyMediaSource EmbyMediaSource { get; set; }
|
|
}
|