mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -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; }
|
|||
|
}
|
|||
|
}
|