21 lines
453 B
C#
21 lines
453 B
C#
|
using Thousandto.Core.Base;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Thousandto.Code.Global
|
|||
|
{
|
|||
|
public class NumInputInfoParam
|
|||
|
{
|
|||
|
//最大数量
|
|||
|
public int MaxCount { get; set; }
|
|||
|
//单价
|
|||
|
public int Price { get; set; }
|
|||
|
//拥有货币
|
|||
|
public int HaveCoin { get; set; }
|
|||
|
//货币图片ID
|
|||
|
public int IconId { get; set; }
|
|||
|
}
|
|||
|
}
|