/* * SPDX-FileCopyrightText: 2020, microG Project Team * SPDX-License-Identifier: Apache-2.0 */ package com.google.android.gms.phenotype; import org.microg.safeparcel.AutoSafeParcelable; public class GenericDimension extends AutoSafeParcelable { @Field(1) public int a; @Field(2) public int b; public static final Creator CREATOR = new AutoCreator<>(GenericDimension.class); }