From 6cd4ea2df6e57bc9dedb0f2714f18b4928fc51c4 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Mon, 15 Dec 2025 10:01:07 +0100 Subject: [PATCH] [chore:] added sender address field --- Settings.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Settings.cs b/Settings.cs index 89f9141..a00fe82 100644 --- a/Settings.cs +++ b/Settings.cs @@ -121,10 +121,12 @@ public class Customer public string name { get; set; } = ""; public string description { get; set; } = ""; + public string sender_address { get; set; } = ""; public AddressPatch patch { get; set; } public char separator { get; set; } = ','; public int ID { get; } + public static int GetIDByCustomerListItem(string item_content) { var id = item_content.Split(" - ")[0];