mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
10 lines
217 B
C#
10 lines
217 B
C#
namespace NzbDrone.Core.MetadataSource.Trakt
|
|
{
|
|
public class Actor
|
|
{
|
|
public string name { get; set; }
|
|
public string character { get; set; }
|
|
public Images images { get; set; }
|
|
}
|
|
}
|