1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 17:01:42 +02:00
Radarr/NzbDrone.Web/Models/AddExistingManualModel.cs

13 lines
262 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class AddExistingManualModel
{
public string Path { get; set; }
public string FolderName { get; set; }
}
}