Made all properties nullable for now. Will fix later when more functionality is added and workflow can be adapted to properly test functionality
All checks were successful
Avalonia Code Quality / Lint, Analyze & Build (push) Successful in 58s
All checks were successful
Avalonia Code Quality / Lint, Analyze & Build (push) Successful in 58s
This commit is contained in:
@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user