mirror of
https://github.com/Readarr/Readarr.git
synced 2026-01-31 01:02:20 -05:00
6 lines
65 B
TypeScript
6 lines
65 B
TypeScript
interface ModelBase {
|
|
id: number;
|
|
}
|
|
|
|
export default ModelBase;
|