9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
|
|
export class Audit {
|
||
|
|
public accountId: number;
|
||
|
|
public createdAt: Date;
|
||
|
|
public createdBy: string;
|
||
|
|
public updatedAt: Date;
|
||
|
|
public updatedBy: string;
|
||
|
|
|
||
|
|
|
||
|
|
}
|