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