14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
|
|
export interface FacturaDto {
|
||
|
|
idFactura: number;
|
||
|
|
idSuscripcion: number;
|
||
|
|
periodo: string; // "YYYY-MM"
|
||
|
|
fechaEmision: string; // "yyyy-MM-dd"
|
||
|
|
fechaVencimiento: string; // "yyyy-MM-dd"
|
||
|
|
importeFinal: number;
|
||
|
|
estado: string;
|
||
|
|
numeroFactura?: string | null;
|
||
|
|
|
||
|
|
// Datos enriquecidos para la UI
|
||
|
|
nombreSuscriptor: string;
|
||
|
|
nombrePublicacion: string;
|
||
|
|
}
|