You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Entities/PersonType.cs

49 lines
1.1 KiB

6 years ago
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Struct PersonType.
6 years ago
/// </summary>
public class PersonType
{
/// <summary>
/// The actor.
6 years ago
/// </summary>
public const string Actor = "Actor";
6 years ago
/// <summary>
/// The director.
6 years ago
/// </summary>
public const string Director = "Director";
6 years ago
/// <summary>
/// The composer.
6 years ago
/// </summary>
public const string Composer = "Composer";
6 years ago
/// <summary>
/// The writer.
6 years ago
/// </summary>
public const string Writer = "Writer";
6 years ago
/// <summary>
/// The guest star.
6 years ago
/// </summary>
public const string GuestStar = "GuestStar";
6 years ago
/// <summary>
/// The producer.
6 years ago
/// </summary>
public const string Producer = "Producer";
6 years ago
/// <summary>
/// The conductor.
6 years ago
/// </summary>
public const string Conductor = "Conductor";
6 years ago
/// <summary>
/// The lyricist.
6 years ago
/// </summary>
public const string Lyricist = "Lyricist";
}
}