mirror of
https://github.com/simon987/task_tracker.git
synced 2025-12-14 07:19:02 +00:00
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
export class Project {
|
|
|
|
public priority: number;
|
|
public motd: string;
|
|
public name: string;
|
|
public clone_url: string;
|
|
public git_repo: string;
|
|
public version: string;
|
|
}
|