mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
12 lines
264 B
Java
12 lines
264 B
Java
package com.virtualapplications.play;
|
|
|
|
//This needs to mirror the layout of the Bootable structure in BootablesDbClient.h
|
|
public class Bootable
|
|
{
|
|
String path;
|
|
String discId;
|
|
public String title;
|
|
String coverUrl;
|
|
int lastBootedTime;
|
|
public String overview;
|
|
}
|