13 lines
336 B
C#
13 lines
336 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Contables
|
||
|
|
{
|
||
|
|
public class UltimoCierreDto
|
||
|
|
{
|
||
|
|
public int IdCierre { get; set; }
|
||
|
|
public string FechaCorte { get; set; } = string.Empty; // yyyy-MM-dd
|
||
|
|
public decimal SaldoCierre { get; set; }
|
||
|
|
public string Estado { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|