1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Core/Repository/RootDir.cs
2011-03-30 18:42:27 -07:00

16 lines
289 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
{
public class RootDir
{
public virtual int Id { get; set; }
public string Path { get; set; }
}
}