1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 03:41:24 +00:00
Radarr/NzbDrone.Core/Repository/RootDir.cs

13 lines
No EOL
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; }
}
}