Wonky.Client/Wonky.Entity/Views/InvoiceListView.cs
2022-11-10 12:31:21 +01:00

7 lines
No EOL
196 B
C#

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