少年修仙传客户端代码仓库
client_Wu Xijin
2018-10-26 19997f58e0df812218eb50074acdba8b6ad6fe49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Snxxz.UI
{
     [XLua.LuaCallCSharp]
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;
        }
    }
}