creditdocuments in front

This commit is contained in:
mmrbnjd
2024-07-30 17:36:35 +03:30
parent ca8a35a68e
commit b05b03c501
4 changed files with 141 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
using Shared.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class CreditDocumentDto
{
public string Date { get; set; }
public string Title { get; set; }
public string typeName { get; set; }
public CreditDocumentType type { get; set; }
public decimal Value { get; set; }
}
}