9 lines
200 B
C#
9 lines
200 B
C#
namespace ErsatzTV.ViewModels;
|
|
|
|
public class PlexPathReplacementEditViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string PlexPath { get; set; }
|
|
public string LocalPath { get; set; }
|
|
}
|