Files
Invoice-App/Models/Customer.cs
Kaan c82300da81
Some checks failed
Avalonia Code Quality / Lint, Analyze & Build (push) Failing after 55s
Added classes for Company, Customer, and Vehicle. Also added test for Vehicle class
2025-06-05 03:43:09 +02:00

11 lines
299 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; }
}