You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/interfaces/ICommon.ts

35 lines
508 B

export interface ISettings {
id: number;
}
export interface ICutoff {
id: number;
name: string;
}
export interface IItem {
allowed: boolean;
quality: IQuality;
}
export interface IQuality {
id: number;
name: string;
}
export interface ICheckbox {
value: string;
enabled: boolean;
}
export interface IUsersModel {
id: string;
username: string;
}
export interface INavBar {
icon: string;
name: string;
link: string;
requiresAdmin: boolean;
}