12 lines
421 B
C#
12 lines
421 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Contables
|
||
|
|
{
|
||
|
|
public class ReabrirCierreDto
|
||
|
|
{
|
||
|
|
[Required(ErrorMessage = "La justificación es obligatoria al reabrir un cierre.")]
|
||
|
|
[StringLength(500, MinimumLength = 10, ErrorMessage = "La justificación debe tener entre 10 y 500 caracteres.")]
|
||
|
|
public string Justificacion { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|