using System.Collections.Generic; namespace CompanyManagment.App.Contracts.FinancialInvoice; public class EditFinancialInvoice { public long Id { get; set; } public string InvoiceNumber { get; set; } public string Description { get; set; } public double Amount { get; set; } public FinancialInvoiceStatus Status { get; set; } public List Items { get; set; } public long ContractingPartyId { get; set; } } public class EditFinancialInvoiceItem { public long Id { get; set; } public string Description { get; set; } public double Amount { get; set; } public FinancialInvoiceItemType Type { get; set; } public long EntityId { get; set; } }