mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-18 05:19:19 +08:00
16 lines
379 B
Go
16 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;
|
|
}
|
|
}
|