tytd-server/TYTD.Api/Server/Models/VideoDownloadProgress.cs

14 lines
287 B
C#
Raw Normal View History

2021-06-24 01:10:20 +00:00
using System;
2021-12-08 01:07:43 +00:00
namespace TYTD.Server.Models
2021-06-24 01:10:20 +00:00
{
2021-12-08 01:07:43 +00:00
public class VideoDownloadProgress
2021-06-24 01:10:20 +00:00
{
2021-12-08 01:07:43 +00:00
public SavedVideo Saved { get; set; }
2021-06-24 01:10:20 +00:00
public long Length { get; set; }
public int Progress { get; set; }
public double ProgressRaw { get; set; }
}
2022-01-03 16:35:57 +00:00
2021-06-24 01:10:20 +00:00
}