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