diff --git a/Models/Company.cs b/Models/Company.cs index f7bdccd..6db5e5f 100644 --- a/Models/Company.cs +++ b/Models/Company.cs @@ -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; } } \ No newline at end of file diff --git a/Models/Customer.cs b/Models/Customer.cs index 4397e77..e41cfc4 100644 --- a/Models/Customer.cs +++ b/Models/Customer.cs @@ -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; }