Lets treasurers/captains/coaches define recurring fee/levy dues that are automatically booked for all active players on a monthly, quarterly, or yearly schedule via a daily cron job, instead of having to book them manually every cycle. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
import { RecurringTransactionIntervalEnum } from '../recurring-transaction-interval.enum';
|
|
|
|
export class RecurringTransactionResponseDTO {
|
|
id: number;
|
|
description: string;
|
|
amount: number;
|
|
type: number;
|
|
interval: RecurringTransactionIntervalEnum;
|
|
nextRunDate: string;
|
|
active: boolean;
|
|
createdAt: Date;
|
|
}
|