Files
Invoice-App/Models/Customer.cs
2025-06-05 05:06:38 +02:00

11 lines
301 B
C#

namespace Invoice_App.Models;
public class Customer
{
public string? Name { get; set; }
public string? Address { get; set; }
public string? ZipCode { get; set; }
public string? City { get; set; }
public string? PhoneNumber { get; set; }
public string? Email { get; set; }
}