Some checks failed
Avalonia Code Quality / Lint, Analyze & Build (push) Failing after 57s
16 lines
456 B
C#
16 lines
456 B
C#
using System;
|
|
|
|
namespace Invoice_App.Models;
|
|
|
|
public class Company
|
|
{
|
|
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? AccountRegistration { get; set; }
|
|
public string? AccountNumber { get; set; }
|
|
} |