Files

17 lines
346 B
C#
Raw Permalink Normal View History

2021-09-14 18:18:41 +02:00
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;
}
}
}