1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-06-05 22:09:25 +02:00
Files
Facebook-Events-iCal-Converter/lib/frontend/records/request.js
2020-12-20 14:29:21 +01:00

12 lines
147 B
JavaScript

export default class Request {
constructor({
id,
url,
error,
}) {
this.id = id
this.url = url
this.error = error
}
}