mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-16 21:16:24 -04:00
6 lines
65 B
TypeScript
6 lines
65 B
TypeScript
interface ModelBase {
|
|
id: number;
|
|
}
|
|
|
|
export default ModelBase;
|