mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-15 14:02:09 +08:00
25 lines
731 B
Java
25 lines
731 B
Java
package cc.winboll.studio.gallery;
|
|
|
|
import android.net.Uri;
|
|
import cc.winboll.studio.libappbase.LogUtils;
|
|
|
|
public class Album {
|
|
public static final String TAG = "Album";
|
|
private String name;
|
|
private String path;
|
|
private Uri coverUri;
|
|
private int imageCount;
|
|
|
|
public Album(String name, String path, Uri coverUri, int imageCount) {
|
|
LogUtils.d(TAG, "Album created: " + name);
|
|
this.name = name;
|
|
this.path = path;
|
|
this.coverUri = coverUri;
|
|
this.imageCount = imageCount;
|
|
}
|
|
|
|
public String getName() { return name; }
|
|
public String getPath() { return path; }
|
|
public Uri getCoverUri() { return coverUri; }
|
|
public int getImageCount() { return imageCount; }
|
|
} |