Bilibili-Evolved/extras/vld-windows/VideoLinkDownloader.Core/VideoFragment.cs
2019-05-29 19:13:19 +08:00

16 lines
395 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace VideoLinkDownloader.Core
{
public class VideoFragment
{
public int Length { get; set; }
public int Size { get; set; }
public string Url { get; set; }
public string[] BackupUrls { get; set; }
public string Extension => Url.Contains(".flv") ? ".flv" : ".mp4";
}
}