mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
13 lines
267 B
C#
13 lines
267 B
C#
using MediaBrowser.Model.Tasks;
|
|
using System;
|
|
|
|
namespace MediaBrowser.Common.ScheduledTasks
|
|
{
|
|
public class TaskCompletionEventArgs : EventArgs
|
|
{
|
|
public IScheduledTaskWorker Task { get; set; }
|
|
|
|
public TaskResult Result { get; set; }
|
|
}
|
|
}
|