1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00
Files
Sonarr/frontend/src/Language/Language.ts
T
2023-04-03 20:14:44 -07:00

7 lines
79 B
TypeScript

interface Language {
id: number;
name: string;
}
export default Language;