2013-11-26 02:53:48 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
|
|
{
|
|
|
|
|
public enum RecordingStatus
|
|
|
|
|
{
|
|
|
|
|
Pending,
|
|
|
|
|
InProgress,
|
|
|
|
|
Completed,
|
|
|
|
|
CompletedWithError,
|
|
|
|
|
Conflicted,
|
|
|
|
|
Deleted
|
|
|
|
|
}
|
2013-11-29 16:58:24 +00:00
|
|
|
|
|
|
|
|
|
public enum RecurrenceType
|
|
|
|
|
{
|
|
|
|
|
Manual,
|
|
|
|
|
NewProgramEvents,
|
|
|
|
|
AllProgramEvents
|
|
|
|
|
}
|
2013-11-26 02:53:48 +00:00
|
|
|
|
}
|