aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/Person.cs
blob: 2bd383802dd5d3f139265acce2610f68b2bb7fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// This is the full Person object that can be retrieved with all of it's data.
    /// </summary>
    public class Person : BaseEntity
    {
    }

    /// <summary>
    /// This is the small Person stub that is attached to BaseItems
    /// </summary>
    public class PersonInfo
    {
        public string Name { get; set; }
        public string Overview { get; set; }
        public string Type { get; set; }

        public override string ToString()
        {
            return Name;
        }
    }
}