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