Files
moadiran/Shared/DTOs/CreditDocumentDto.cs
2024-07-30 17:36:35 +03:30

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