2025-06-06 07:38:11 -03:00

11 lines
243 B
TypeScript

export interface BasicFee {
basicFeeId: number;
startCarnetValue: number;
endCarnetValue: number | null;
fees: number;
effectiveDate: Date;
spid?: number;
dateCreated?: Date | null;
createdBy?: string | null;
}