23 lines
439 B
C#
23 lines
439 B
C#
// <copyright file="IsoType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Enum IsoType.
|
|
/// </summary>
|
|
public enum IsoType
|
|
{
|
|
/// <summary>
|
|
/// The DVD.
|
|
/// </summary>
|
|
Dvd,
|
|
|
|
/// <summary>
|
|
/// The blu ray.
|
|
/// </summary>
|
|
BluRay
|
|
}
|
|
}
|