Wonky.Client/Wonky.Entity/Views/InvoiceListView.cs
2022-11-14 17:06:43 +01:00

7 lines
No EOL
193 B
C#

namespace Wonky.Entity.Views;
public class InvoiceListView
{
public InvoiceCompanyView Company { get; set; } = new();
public List<InvoiceListItemView> Invoices { get; set; } = new();
}