using System.Collections.Generic;

namespace NzbDrone.Core.MetadataSource.Trakt
{
    public class People
    {
        public List<Actor> actors { get; set; }
    }
}