mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-24 12:19:27 +01:00
Split into legacy (Framework 4.8) and .NET 8 projects, WIP .NET 8 fixes
This commit is contained in:
16
CodeLegacy/Data/QueryInfo.cs
Normal file
16
CodeLegacy/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