export interface Administrator {
    readonly administratorId: number;
    readonly description: string;
    readonly businessName: string;
    readonly webAddress: string;
}
export interface AdministratorsResponse {
    readonly administrators: Administrator[];
    readonly totalRows: number;
}
