Split into legacy (Framework 4.8) and .NET 8 projects, WIP .NET 8 fixes

This commit is contained in:
N00MKRAD
2024-08-12 10:47:19 +02:00
parent 6c406a4846
commit b520d7212d
340 changed files with 50433 additions and 0 deletions

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;
}
}
}