adding models and stale state for convos
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { ObjectId } from "mongodb";
|
||||
|
||||
export default class AudioClip {
|
||||
constructor(
|
||||
public _id: ObjectId,
|
||||
|
||||
public url: string,
|
||||
|
||||
public createdDate: Date = new Date(),
|
||||
public duration?: number
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user