Files
VDownload/VDownload.Core/Structs/TaskData.cs

21 lines
624 B
C#
Raw Normal View History

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
{
public IVideoService VideoService { get; set; }
public MediaType MediaType { get; set; }
2022-03-07 14:59:11 +01:00
public BaseStream Stream { get; set; }
2022-02-26 14:32:34 +01:00
public TimeSpan TrimStart { get; set; }
public TimeSpan TrimEnd { get; set; }
public string Filename { get; set; }
public MediaFileExtension Extension { get; set; }
public StorageFolder Location { get; set; }
public double Schedule { get; set; }
2022-02-26 14:32:34 +01:00
}
}