export interface IRole{
    id: number;
    name: string;
    canBeDeleted: boolean;
    timestamp: number;
}