mirror of
https://github.com/comatory/fb2iCal
synced 2025-02-07 04:13:22 +01:00
12 lines
147 B
JavaScript
12 lines
147 B
JavaScript
export default class Request {
|
|
constructor({
|
|
id,
|
|
url,
|
|
error,
|
|
}) {
|
|
this.id = id
|
|
this.url = url
|
|
this.error = error
|
|
}
|
|
}
|