Dateien können jetzt über FTP heruntergeladen werden

This commit is contained in:
Husky
2018-07-01 20:42:13 +02:00
parent e45ae7447d
commit 592b41a926
11 changed files with 145 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
using SanShared;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -11,7 +12,16 @@ namespace SanSystem
{
public static readonly Global instance = new Global();
public string projektpfad = "temp";
const string speicherpfad_to_projekts = "projekte";
string projektpfad = "18-850";
public string Projektpfad
{
get
{
return Path.Combine(speicherpfad_to_projekts, projektpfad);
}
}
public ILanguage language = null;
public static Global Instance