mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-19 01:39:26 +01:00
21 lines
399 B
C#
21 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Flowframes.Data
|
|
{
|
|
class PseudoUniqueFile
|
|
{
|
|
public string path;
|
|
public long filesize;
|
|
|
|
public PseudoUniqueFile (string pathArg, long filesizeArg)
|
|
{
|
|
path = pathArg;
|
|
filesize = filesizeArg;
|
|
}
|
|
}
|
|
}
|