export interface Profile {
    id: number;
    text: string;
    roles: number[];
    changed_by: string;
    contact: number;
    created: string;
    organization: number;
    updated: string;
}
