mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
23 lines
262 B
JavaScript
23 lines
262 B
JavaScript
|
|
||
|
|
||
|
|
||
|
|
||
|
class DateRange {
|
||
|
start=null;
|
||
|
end = null;
|
||
|
constructor() {
|
||
|
this.start = null
|
||
|
this.end = null
|
||
|
}
|
||
|
|
||
|
setStart(start) {
|
||
|
this.start = start
|
||
|
}
|
||
|
|
||
|
setEnd(end) {
|
||
|
this.end = end
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default DateRange
|