2011-03-09 07:40:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
|
{
|
|
|
|
|
public class RootDir
|
|
|
|
|
{
|
2011-03-28 23:38:05 +00:00
|
|
|
|
public int Id { get; set; }
|
2011-03-09 07:40:48 +00:00
|
|
|
|
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|