Radarr/NzbDrone.Core/Datastore/LazyList.cs

10 lines
156 B
C#

using System.Collections.Generic;
using Marr.Data;
namespace NzbDrone.Core.Datastore
{
public class LazyList<T> : LazyLoaded<List<T>>
{
}
}