13 lines
No EOL
324 B
TypeScript
13 lines
No EOL
324 B
TypeScript
export class Channel {
|
|
id: number;
|
|
name: string;
|
|
description: string;
|
|
inserted_at: string | Date;
|
|
created_by: string;
|
|
|
|
constructor(created_by: string, name: string, description?: string) {
|
|
this.name = name;
|
|
this.description = description;
|
|
this.created_by = created_by;
|
|
}
|
|
} |