1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-02-07 04:13:22 +01:00
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
}
}