mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 09:19:16 +08:00
17 lines
379 B
Go
17 lines
379 B
Go
|
import { CommonModel } from '.';
|
||
|
export namespace File {
|
||
|
export interface File extends CommonModel {
|
||
|
name: string;
|
||
|
mode: number;
|
||
|
user: string;
|
||
|
group: string;
|
||
|
updateDate: string;
|
||
|
isDir: boolean;
|
||
|
isLink: boolean;
|
||
|
path: string;
|
||
|
size: number;
|
||
|
accessTime: string;
|
||
|
changeTime: string;
|
||
|
}
|
||
|
}
|