19 lines
437 B
C#
19 lines
437 B
C#
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; }
|
|
}
|
|
}
|