Should really have fixed indentations now
Some checks failed
Avalonia Code Quality / Lint, Analyze & Build (push) Failing after 57s

This commit is contained in:
2025-06-05 05:03:56 +02:00
parent b2246726a5
commit 248c56b0d3
4 changed files with 41 additions and 45 deletions

View File

@ -13,5 +13,4 @@ public class Company
public string PhoneNumber { get; set; }
public string? AccountRegistration { get; set; }
public string? AccountNumber { get; set; }
}

View File

@ -2,5 +2,4 @@
public class Invoice
{
}

View File

@ -4,10 +4,10 @@ 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; }
}
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; }
}