• 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:消息中心 和 预约消息 · 6dac5683
    6dac5683 Browse Files
    yangchenggong1_wd authored 2024-05-14 17:28:52 +0800
MessageItem.ets 336 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
@Observed
export class MessageItem{
  imgSrc:Resource = $r("app.media.xxhdpi_pic_wb")
  title:string = ""
  desc:string = ""
  time:string = ""
  unReadCount:number = 0

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


}