FreePS/types/Application/Application.ts

12 lines
179 B
TypeScript

export type Application = {
id: number;
name: string;
area: string;
cpu: number;
ram: number;
disk: number;
desc: string;
applicant: string;
deploy: boolean;
};