• This project
    • Loading...
  • Sign in

developOne / harmonyPool

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
  • harmonyPool
  • ..
  • viewmodel
  • MessageItem.ets
  • desc:增加 我的 消息 入口 · 9bc2b1f2
    9bc2b1f2 Browse Files
    yangchenggong1_wd authored 2024-05-10 20:00:06 +0800
MessageItem.ets 301 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export class MessageItem{
  imgSrc:Resource = $r("app.media.xxhdpi_pic_wb")
  title:string = ""
  desc:string = ""
  time:string = ""

  constructor(imgSrc:Resource,title:string,desc:string,time:string){
    this.imgSrc = imgSrc
    this.title = title
    this.desc = desc
    this.time = time
  }


}