mirror of
https://github.com/comatory/fb2iCal
synced 2025-02-21 22:17:38 +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
|
|
}
|
|
}
|