namespace MediaBrowser.Model.Entities
{
///
/// Class MediaType
///
public class MediaType
{
///
/// The video
///
public const string Video = "Video";
///
/// The audio
///
public const string Audio = "Audio";
///
/// The photo
///
public const string Photo = "Photo";
///
/// The book
///
public const string Book = "Book";
}
}