src/app/modules/core/services/tenant/interfaces/tenant.ts
        
| Properties | 
| appLogo | 
| appLogo:          | 
| Type : string | 
| favicon | 
| favicon:          | 
| Type : string | 
| logo | 
| logo:          | 
| Type : string | 
| poster | 
| poster:          | 
| Type : string | 
| titleName | 
| titleName:          | 
| Type : string | 
import { ServerResponse } from '@sunbird/shared';
export interface ITenantInfo {
    err: ServerResponse;
    tenantData: ITenantData;
}
export interface ITenantData {
    appLogo: string;
    favicon: string;
    logo: string;
    poster: string;
    titleName: string;
}
export interface ITenantSettings {
    helpCenterLink?: string;
    helpDeskEmail?: string;
    playstoreLink?: string;
}