• This project
    • Loading...
  • Sign in

fastcoding / commonProject

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • commonProject
  • ..
  • bean
  • NightModeBean.java
  • 添加模块 · 3429c014
    3429c014 Browse Files
    wangkai authored 2024-11-08 16:55:29 +0800
NightModeBean.java 338 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

package com.wd.foundation.bean;

import java.io.Serializable;

public class NightModeBean implements Serializable {
    /**
     * 用于展示文案
     */
    public String nightmodeWord;

    /**
     * 用于系统设置
     */
    public int nightMode;

    /**
     * 是否展示分割线
     */
    public boolean showLine;
}