mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-21 18:59:26 +01:00
Backported GetVideoInfo from Nmkoder
This commit is contained in:
16
Code/Data/QueryInfo.cs
Normal file
16
Code/Data/QueryInfo.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user