mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
16 lines
289 B
C#
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; }
|
|
}
|
|
}
|