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 guest star.
///
public const string GuestStar = "GuestStar";
///
/// The producer.
///
public const string Producer = "Producer";
///
/// The conductor.
///
public const string Conductor = "Conductor";
///
/// The lyricist.
///
public const string Lyricist = "Lyricist";
}
}