mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 05:22:02 +00:00
feat(FE-41): create Area type
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { BaseMetadata } from '@/types/api/api-general';
|
||||
|
||||
export type Area = BaseMetadata & {
|
||||
id: number;
|
||||
name: string;
|
||||
};
|
||||
|
||||
export type CreateAreaPayload = {
|
||||
name: string;
|
||||
};
|
||||
|
||||
export type UpdateAreaPayload = CreateAreaPayload;
|
||||
Reference in New Issue
Block a user