mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
export default class RequestRangeBytes {
|
|
readonly end: number;
|
|
readonly start: number;
|
|
|
|
constructor(start: number, end: number) {
|
|
this.start = start;
|
|
this.end = end;
|
|
}
|
|
}
|