Added classes for Company, Customer, and Vehicle. Also added test for Vehicle class
Some checks failed
Avalonia Code Quality / Lint, Analyze & Build (push) Failing after 55s
Some checks failed
Avalonia Code Quality / Lint, Analyze & Build (push) Failing after 55s
This commit is contained in:
11
Models/Customer.cs
Normal file
11
Models/Customer.cs
Normal file
@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user