mod: fav isPublic logic

This commit is contained in:
guozhigq
2024-11-01 22:21:12 +08:00
parent 3cb595e76e
commit 6dccaa87ae
4 changed files with 13 additions and 10 deletions

View File

@ -0,0 +1,6 @@
class LogicUtils {
// 收藏夹是否公开
static bool isPublic(int attr) {
return (attr & 1) == 0;
}
}