hrms-mgt/src/modules/15_development/interface/response/FollowResult.ts

21 lines
451 B
TypeScript
Raw Normal View History

interface DevelopmentEvaluations {
calculation: string;
createdAt: string;
createdFullName: string;
createdUserId: string;
developmentId: string;
id: string;
indicators: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string;
measuRement: string;
metricType: string;
obstacles: string;
results: string;
suggestions: string;
target: number | null;
}
export type { DevelopmentEvaluations };