20 lines
566 B
C#
20 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.FinancialInvoice;
|
|
|
|
public class CreateFinancialInvoice
|
|
{
|
|
public double Amount { get; set; }
|
|
public long ContractingPartyId { get; set; }
|
|
public string Description { get; set; }
|
|
public List<CreateFinancialInvoiceItem> Items { get; set; }
|
|
}
|
|
|
|
public class CreateFinancialInvoiceItem
|
|
{
|
|
public string Description { get; set; }
|
|
public double Amount { get; set; }
|
|
public FinancialInvoiceItemType Type { get; set; }
|
|
public long EntityId { get; set; }
|
|
} |