Files
Main/Assets/GameAssets/Resources/GameUI/Common/UITitleListView/TitleListChildData.cs
2025-01-25 04:38:09 +08:00

19 lines
396 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}