1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 09:19:16 +08:00

17 lines
379 B
Go
Raw Normal View History

2022-08-19 16:02:58 +08:00
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;
}
}