blob: b5f3060a5834b18b938eb0069014b420a9659d58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="JobContextService.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Defines the JobContextService type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services
{
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Parsing;
using HandBrakeWPF.Services.Interfaces;
/// <summary>
/// A Context service for the current Job Information.
/// </summary>
public class JobContextService : IJobContextService
{
/// <summary>
/// Gets or sets CurrentTask.
/// </summary>
public EncodeTask CurrentTask { get; set; }
/// <summary>
/// Gets or sets CurrentSource.
/// </summary>
public Source CurrentSource { get; set; }
}
}
|