mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
export default interface IServer_DB_Model_File {
|
|
id :bigint,
|
|
user_id :bigint,
|
|
project_id :bigint ,
|
|
size: bigint ,
|
|
filename :string,
|
|
type :string,
|
|
created_time :number,
|
|
path :string,
|
|
}
|
|
export const Table_File="file" |