mirror of
https://github.com/Radarr/Radarr
synced 2025-02-12 09:36:33 +00:00
10 lines
187 B
C#
10 lines
187 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Core.Tvdb
|
|
{
|
|
public class TvdbAsyncResult <T>
|
|
{
|
|
public T Data { get; set; }
|
|
public object UserState { get; set; }
|
|
}
|
|
}
|