export interface ISimpleClan {
    name: string;
    id: number;
    xp: number;
    personalXp: number;
}
