mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
import {BaseModel} from "./base"
|
|
|
|
export interface ICommon_Model_Project_Label {
|
|
id: string,
|
|
name: string,
|
|
project_id: string
|
|
}
|
|
|
|
export const Table_Project_Label = "project_label"
|
|
|
|
class ProjectLabelModel extends BaseModel {
|
|
table = Table_Project_Label
|
|
model = <ICommon_Model_Project_Label>{}
|
|
}
|
|
|
|
export let projectLabelModel = new ProjectLabelModel |