mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
15 lines
289 B
C#
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; }
|
|
}
|
|
}
|