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