mirror of https://github.com/Radarr/Radarr
9 lines
170 B
C#
9 lines
170 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace NzbDrone.Core.MetadataSource.Trakt
|
|||
|
{
|
|||
|
public class People
|
|||
|
{
|
|||
|
public List<Actor> actors { get; set; }
|
|||
|
}
|
|||
|
}
|