mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-03 15:36:20 +02:00
13 lines
208 B
C#
13 lines
208 B
C#
|
|
namespace MediaBrowser.Model.LiveTv
|
|
{
|
|
public enum RecordingStatus
|
|
{
|
|
Pending,
|
|
InProgress,
|
|
Completed,
|
|
CompletedWithError,
|
|
Conflicted,
|
|
Deleted
|
|
}
|
|
}
|