Files
pgsql-jellyfin/Emby.Naming/Common/MediaType.cs
T

28 lines
544 B
C#

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