Initial Commit
This commit is contained in:
10
otis/src/app/core/act.ts
Normal file
10
otis/src/app/core/act.ts
Normal file
@ -0,0 +1,10 @@
|
||||
export class Act {
|
||||
id: string | undefined;
|
||||
name: string;
|
||||
|
||||
public constructor(init?: Partial<Act>) {
|
||||
this.id = undefined;
|
||||
this.name = '';
|
||||
Object.assign(this, init);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user