37 lines
523 B
TypeScript
Raw Normal View History

2023-12-01 21:57:59 +08:00
/**
*
*/
2023-11-20 18:09:10 +08:00
export interface File {
2023-12-01 21:57:59 +08:00
/**
*
*/
2023-11-20 18:09:10 +08:00
downloadCount: number;
2023-12-01 21:57:59 +08:00
/**
* hashsha512
*/
2023-11-20 18:09:10 +08:00
hash: string;
2023-12-01 21:57:59 +08:00
/**
* id
*/
2023-11-20 18:09:10 +08:00
id: number;
2023-12-01 21:57:59 +08:00
/**
*
*/
2023-11-20 18:09:10 +08:00
name: string;
2023-12-01 21:57:59 +08:00
/**
*
*/
2023-11-20 18:09:10 +08:00
size: number;
2023-12-01 21:57:59 +08:00
/**
*
*/
2023-11-20 18:09:10 +08:00
type: string;
2023-12-01 21:57:59 +08:00
/**
*
*/
2023-11-20 18:09:10 +08:00
uploadTime: string;
2023-12-01 21:57:59 +08:00
/**
*
*/
2023-11-20 18:09:10 +08:00
uploaderName: string;
}