mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 13:55:45 +00:00
feat(FE-317): Add Uniformity API service and types
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
import { Location } from '@/types/api/location/location';
|
||||
import { Kandang } from '@/types/api/kandang/kandang';
|
||||
import { BaseMetadata } from '../api-general';
|
||||
|
||||
export type Uniformity = BaseMetadata & {
|
||||
id: number;
|
||||
location: Location;
|
||||
project_flock_kandang_id: number;
|
||||
kandang: Kandang;
|
||||
week: number;
|
||||
status: 'CREATED' | 'APPROVED' | 'REJECTED';
|
||||
};
|
||||
Reference in New Issue
Block a user