mirror of https://github.com/Radarr/Radarr
24 lines
404 B
C#
24 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.Security;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
|
|
public class SettingsModel
|
|
{
|
|
public String RootPath
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
}
|