20 lines
393 B
C#
20 lines
393 B
C#
// <copyright file="RecordingStatus.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
{
|
|
public enum RecordingStatus
|
|
{
|
|
New,
|
|
InProgress,
|
|
Completed,
|
|
Cancelled,
|
|
ConflictedOk,
|
|
ConflictedNotOk,
|
|
Error
|
|
}
|
|
}
|