mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
13 lines
350 B
C#
13 lines
350 B
C#
namespace Kyoo.Models
|
|
{
|
|
public class PeopleLink
|
|
{
|
|
public long ID { get; set; }
|
|
public long PeopleID { get; set; }
|
|
public People People { get; set; }
|
|
public long ShowID { get; set; }
|
|
public Show Show { get; set; }
|
|
public string Role { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
} |