mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-17 00:47:48 +01:00
17 lines
346 B
C#
17 lines
346 B
C#
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;
|
|
}
|
|
}
|
|
}
|