Made all properties nullable for now. Will fix later when more functionality is added and workflow can be adapted to properly test functionality
Avalonia Code Quality / Lint, Analyze & Build (push) Successful in 58s

This commit is contained in:
2025-06-05 05:06:38 +02:00
parent 248c56b0d3
commit a408872bdc
2 changed files with 8 additions and 8 deletions
+6 -6
View File
@@ -4,13 +4,13 @@ namespace Invoice_App.Models;
public class Company
{
public string CompanyName { get; set; }
public string? CompanyName { get; set; }
public string? LogoPath { get; set; }
public string Address { get; set; }
public string ZipCode { get; set; }
public string City { get; set; }
public string CVR { get; set; }
public string PhoneNumber { get; set; }
public string? Address { get; set; }
public string? ZipCode { get; set; }
public string? City { get; set; }
public string? CVR { get; set; }
public string? PhoneNumber { get; set; }
public string? AccountRegistration { get; set; }
public string? AccountNumber { get; set; }
}
+2 -2
View File
@@ -2,8 +2,8 @@
public class Customer
{
public string Name { get; set; }
public string Address { get; set; }
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; }