17 lines
786 B
C#
17 lines
786 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Contables
|
||
|
|
{
|
||
|
|
public class NotaCreditoDebitoDto
|
||
|
|
{
|
||
|
|
public int IdNota { get; set; }
|
||
|
|
public string Destino { get; set; } = string.Empty; // "Distribuidores", "Canillas"
|
||
|
|
public int IdDestino { get; set; }
|
||
|
|
public string NombreDestinatario { get; set; } = string.Empty; // Nombre del Distribuidor o Canillita
|
||
|
|
public string? Referencia { get; set; }
|
||
|
|
public string Tipo { get; set; } = string.Empty; // "Debito", "Credito"
|
||
|
|
public string Fecha { get; set; } = string.Empty; // yyyy-MM-dd
|
||
|
|
public decimal Monto { get; set; }
|
||
|
|
public string? Observaciones { get; set; }
|
||
|
|
public int IdEmpresa { get; set; }
|
||
|
|
public string NombreEmpresa { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|