5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
|
|
export interface ReabrirCierreDto {
|
||
|
|
// Min 10, max 500 caracteres (validado en backend con DataAnnotations).
|
||
|
|
justificacion: string;
|
||
|
|
}
|