//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Emby.Naming.Common
{
///
/// Type of audiovisual media.
///
public enum MediaType
{
///
/// The audio.
///
Audio = 0,
///
/// The photo.
///
Photo = 1,
///
/// The video.
///
Video = 2
}
}