export interface PointsRange {
    /** The start of the points range. Inclusive. */
    from: number;
    /** The end of the points range. Inclusive. */
    to: number;
    /** The number of users in this points range. */
    users: number;
}
