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:
13
Models/Vehicle.cs
Normal file
13
Models/Vehicle.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Invoice_App.Models;
|
||||
|
||||
public class Vehicle
|
||||
{
|
||||
public string? Make { get; set; }
|
||||
public string? Model { get; set; }
|
||||
public DateTime? RegistrationDate { get; set; }
|
||||
public string? VinNumber { get; set; }
|
||||
public decimal? Kilometers { get; set; }
|
||||
public string? Comments { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user