2022-02-26 14:32:34 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using VDownload.Core.Enums;
|
|
|
|
|
|
using VDownload.Core.Interfaces;
|
|
|
|
|
|
using Windows.Storage;
|
|
|
|
|
|
|
2022-03-07 14:59:11 +01:00
|
|
|
|
namespace VDownload.Core.Structs
|
2022-02-26 14:32:34 +01:00
|
|
|
|
{
|
2022-03-07 14:59:11 +01:00
|
|
|
|
public struct TaskData
|
2022-02-26 14:32:34 +01:00
|
|
|
|
{
|
2022-05-05 15:06:10 +02:00
|
|
|
|
public IVideo VideoService { get; set; }
|
2022-03-09 23:43:51 +01:00
|
|
|
|
public TaskOptions TaskOptions { get; set; }
|
2022-02-26 14:32:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|