1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 09:21:57 +00:00
Radarr/NzbDrone.Web/Models/SettingsModels.cs
2010-09-23 22:21:45 -07:00

23 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;
}
}
}