1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-29 03:05:49 +00:00
Sonarr/NzbDrone.Core/Repository/RootDir.cs
2011-03-30 18:42:27 -07:00

15 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; }
}
}