少年修仙传客户端代码仓库
client_linchunjie
2018-09-06 619a37b0c8c78845a034d1e36a5d77654f88a23e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Snxxz.UI
{
     public class BuySuccessModel : Singleton<BuySuccessModel>
    {
        public int ItemID { get; private set; }
        public int itemCnt { get; private set; }
        public int IsBind { get; private set;}
 
        public void SetBuySuccessModel(int itemId,int count,int isBind)
        {
            this.ItemID = itemId;
            this.itemCnt = count;
            this.IsBind = isBind;
        }
    }
}