Backported GetVideoInfo from Nmkoder

This commit is contained in:
n00mkrad
2021-09-14 18:18:41 +02:00
parent f7e7b1ec29
commit 8b5f5541ad
8 changed files with 137 additions and 121 deletions

16
Code/Data/QueryInfo.cs Normal file
View File

@@ -0,0 +1,16 @@
namespace Flowframes.Data
{
class QueryInfo
{
public string path;
public long filesize;
public string cmd = null;
public QueryInfo(string path, long filesize, string cmd = null)
{
this.path = path;
this.filesize = filesize;
this.cmd = cmd;
}
}
}