export interface IStatsRequest {
    period?: "daily" | "weekly" | "monthly" | "yearly";
    date?: string;
    organizerId?: string;
}
