Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Contables/ReabrirCierreDto.cs

12 lines
421 B
C#
Raw Normal View History

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