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; } }