1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Repository/RootDir.cs

13 lines
254 B
C#

using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("RootDirs")]
[PrimaryKey("Id", autoIncrement = true)]
public class RootDir
{
public virtual int Id { get; set; }
public string Path { get; set; }
}
}