pschelpdesk/FastBill/Models/Customer.cs
2024-11-18 08:47:45 +01:00

7 lines
142 B
C#

namespace FastBill.Models;
public class Customer
{
public string CustomerNr { get; set; }
public string CustomerId { get; set; }
}