mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-21 16:52:00 -07:00
18 lines
296 B
JavaScript
18 lines
296 B
JavaScript
/*
|
|
DeletedChat Entity
|
|
*/
|
|
|
|
class DeletedChat {
|
|
validate (data = {}) {
|
|
const { eventId } = data
|
|
// Input Validation
|
|
if (!eventId || typeof eventId !== 'string') {
|
|
throw new Error("Property 'eventId' must be a string!")
|
|
}
|
|
|
|
return data
|
|
}
|
|
}
|
|
|
|
export default DeletedChat
|