17 lines
280 B
C#
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;
|
|
}
|
|
}
|