Main/Assets/Code/Global/Interface/PopSelectItem.cs
2025-01-25 04:38:09 +08:00

17 lines
280 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Plugins.Common
{
/// <summary>
/// 弹出PopSelectItem基础类
/// </summary>
public class PopSelectItem
{
public string Text;
public int Id;
}
}