[chore:] added sender address field

This commit is contained in:
Elias Fierke
2025-12-15 10:01:07 +01:00
parent 30e42afe35
commit 6cd4ea2df6

View File

@@ -121,10 +121,12 @@ public class Customer
public string name { get; set; } = ""; public string name { get; set; } = "";
public string description { get; set; } = ""; public string description { get; set; } = "";
public string sender_address { get; set; } = "";
public AddressPatch patch { get; set; } public AddressPatch patch { get; set; }
public char separator { get; set; } = ','; public char separator { get; set; } = ',';
public int ID { get; } public int ID { get; }
public static int GetIDByCustomerListItem(string item_content) public static int GetIDByCustomerListItem(string item_content)
{ {
var id = item_content.Split(" - ")[0]; var id = item_content.Split(" - ")[0];