9 lines
215 B
C#
9 lines
215 B
C#
namespace ErsatzTV.ViewModels;
|
|
|
|
public class RemoteMediaSourcePathReplacementEditViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string RemotePath { get; set; }
|
|
public string LocalPath { get; set; }
|
|
}
|