You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
15 lines
301 B
Java
15 lines
301 B
Java
package android.accounts;
|
|
|
|
import android.os.Parcelable;
|
|
|
|
public class Account implements Parcelable {
|
|
public static final Creator<Account> CREATOR = null;
|
|
public final String name;
|
|
public final String type;
|
|
|
|
public Account(String name, String type) {
|
|
this.name = name;
|
|
this.type = type;
|
|
}
|
|
}
|