|
namespace Game.MVVM.Model
|
|
{
|
|
[System.Serializable]
|
|
public class MallScrollItem
|
|
{
|
|
public long id { get; set; }
|
|
public string name { get; set; }
|
|
public string icon { get; set; }
|
|
public string desc { get; set; }
|
|
public int count { get; set; }
|
|
public object data { get; set; }
|
|
}
|
|
} |