Files
lti-web-client/src/services/api/daily-checklist/phase.ts
T
2026-01-08 09:41:01 +07:00

19 lines
424 B
TypeScript

import { BaseApiService } from '@/services/api/base';
import {
Phase,
CreatePhasePayload,
UpdatePhasePayload,
} from '@/types/api/daily-checklist/phase';
export class PhaseApiService extends BaseApiService<
Phase,
CreatePhasePayload,
UpdatePhasePayload
> {
constructor(basePath: string = '/master-data/phases') {
super(basePath);
}
}
export const PhaseApi = new PhaseApiService('/master-data/phases');