src/api/webApi/data/organization.interface.ts
Methods |
getCountry |
getCountry()
|
Returns :
string
|
getLogoUrl |
getLogoUrl()
|
Returns :
string | null
|
getUrl |
getUrl()
|
Returns :
string
|
import { Identifiable } from './identifiable.interface';
export interface Organization extends Identifiable {
getUrl(): string;
getCountry(): string;
getLogoUrl(): string | null;
}