mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
Initial
This commit is contained in:
24
Code/Data/FlowPackage.cs
Normal file
24
Code/Data/FlowPackage.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Flowframes.IO
|
||||
{
|
||||
public struct FlowPackage
|
||||
{
|
||||
public string friendlyName;
|
||||
public string fileName;
|
||||
public int downloadSizeMb;
|
||||
public string desc;
|
||||
|
||||
public FlowPackage(string friendlyNameStr, string fileNameStr, int downloadSizeMbInt, string description)
|
||||
{
|
||||
friendlyName = friendlyNameStr;
|
||||
fileName = fileNameStr;
|
||||
downloadSizeMb = downloadSizeMbInt;
|
||||
desc = description;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user