[chore:] added CSV-Separator Settings.cs

This commit is contained in:
Elias Fierke
2025-10-09 08:39:49 +02:00
parent 4ee852b37c
commit 316c9511d3
3 changed files with 34 additions and 0 deletions

View File

@@ -74,6 +74,7 @@ public class Global
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "logofclient",
"global.config"), json);
}
public static void Load()
{
// if (!File.Exists(Path.Combine(
@@ -121,6 +122,7 @@ public class Customer
public string name { get; set; } = "";
public string description { get; set; } = "";
public AddressPatch patch { get; set; }
public char separator { get; set; } = ',';
public int ID { get; }
public static int GetIDByCustomerListItem(string item_content)