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];