Wonky.Client/Wonky.Entity/Views/InvoiceListView.cs

7 lines
193 B
C#
Raw Normal View History

2022-11-10 12:31:21 +01:00
namespace Wonky.Entity.Views;
public class InvoiceListView
{
public InvoiceCompanyView Company { get; set; } = new();
2022-11-14 17:06:43 +01:00
public List<InvoiceListItemView> Invoices { get; set; } = new();
2022-11-10 12:31:21 +01:00
}