FreePS/types/Application/Application.ts

9 lines
154 B
TypeScript
Raw Normal View History

export type Application = {
name: string
area: string
cpu: number
ram: number
disk: number
usage: string
applicantId: number
}