namespace MediaBrowser.Model.Entities { /// /// Struct PersonType /// public class PersonType { /// /// The actor /// public const string Actor = "Actor"; /// /// The director /// public const string Director = "Director"; /// /// The composer /// public const string Composer = "Composer"; /// /// The writer /// public const string Writer = "Writer"; /// /// The music artist /// public const string MusicArtist = "MusicArtist"; } }