mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
20 lines
378 B
C#
20 lines
378 B
C#
#nullable disable
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System.Threading;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public class ActiveRecordingInfo
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
public TimerInfo Timer { get; set; }
|
|
|
|
public CancellationTokenSource CancellationTokenSource { get; set; }
|
|
}
|
|
}
|