Files
Backend-Api/CompanyManagment.App.Contracts/FinancialStatment/FinancialStatmentViewModel.cs
2024-07-05 21:36:15 +03:30

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; }
}