diff --git a/SteamWareLib/filePack.cs b/SteamWareLib/filePack.cs new file mode 100644 index 0000000..2fd045f --- /dev/null +++ b/SteamWareLib/filePack.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SteamWare +{ + /// + /// Classe gestione pacchetto di file da trasferire va REST + /// + public class filePack + { + /// + /// Array di file da inviare + /// + public List fileList { get; set; } = new List(); + } + + /// + /// Classe x definire un file (corto) inviato come Json tramite httpost + /// + public class smallFile + { + /// + /// Nome file + /// + public string fileName { get; set; } = ""; + /// + /// Contenuto + /// + public string content { get; set; } = ""; + } +}