1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 08:21:46 +02:00
Radarr/NzbDrone.Web/Models/RootDirModel.cs

16 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace NzbDrone.Web.Models
{
public class RootDirModel
{
public int Id { get; set; }
public string Path { get; set; }
public string CleanPath { get; set; }
public SelectList SelectList { get; set; }
}
}