mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
16 lines
395 B
C#
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";
|
|
}
|
|
}
|