Some checks failed
Avalonia Code Quality / Lint, Analyze & Build (push) Failing after 55s
14 lines
315 B
C#
14 lines
315 B
C#
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; }
|
|
}
|