19 lines
396 B
C#
19 lines
396 B
C#
|
using UnityEngine;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace Thousandto.Plugins.Common
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 带标题的list,点标题可像拉抽屉一样展示子列表
|
|||
|
/// </summary>
|
|||
|
public class TitleListChildData
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public object Obj { get; set; }
|
|||
|
}
|
|||
|
}
|
|||
|
|