2011-04-10 02:44:01 +00:00
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
2011-03-09 07:40:48 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
|
{
|
|
|
|
|
public class RootDir
|
|
|
|
|
{
|
2011-04-06 03:14:43 +00:00
|
|
|
|
[SubSonicPrimaryKey]
|
2011-03-31 01:42:27 +00:00
|
|
|
|
public virtual int Id { get; set; }
|
2011-03-09 07:40:48 +00:00
|
|
|
|
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|