Skip to content

Commit

Permalink
[webapp] add language.interface.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarta committed Apr 26, 2022
1 parent b5b848c commit dd8b77f
Showing 1 changed file with 13 additions and 0 deletions.
@@ -0,0 +1,13 @@

export interface Language {
Code: string;
Language: string;
NativeLanguage?: string;
Image?: string;
}

export interface MythLanguageList {
LanguageList: {
Languages: Language[];
};
}

0 comments on commit dd8b77f

Please sign in to comment.