Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • ..
  • event
  • CollectChangedEvent.java
Find file
Normal viewHistoryPermalink
CollectChangedEvent.java 350 Bytes
Newer Older
mReturn's avatar
user & sale
b04401aa
 
mReturn committed 5 years ago
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.bigfish.salecenter.event;

import com.bigfish.salecenter.model.ProductListBean;

/**
 * 商品列表收藏状态改变
 */
public class CollectChangedEvent {
    public int type;
    public ProductListBean item;

    public CollectChangedEvent(int type, ProductListBean item) {
        this.type = type;
        this.item = item;
    }
}