mirror of
https://github.com/CyberL1/dlinux-dashboard.git
synced 2025-04-03 06:28:37 -04:00
10 lines
137 B
TypeScript
10 lines
137 B
TypeScript
export interface Container {
|
|
id: string;
|
|
name: string;
|
|
image: string;
|
|
}
|
|
|
|
export interface CreateContainerBody {
|
|
image: string;
|
|
}
|