15 lines
443 B
C#
15 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.FinancilTransaction;
|
|
|
|
namespace CompanyManagment.App.Contracts.FinancialStatment;
|
|
|
|
public class FinancialStatmentViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long ContractingPartyId { get; set; }
|
|
public string ContractingPartyName { get; set; }
|
|
|
|
public List<FinancialTransactionViewModel> FinancialTransactionViewModels { get; set; }
|
|
|
|
} |