22 lines
453 B
C#
22 lines
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Lskj.MyControl;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Lskj.PubAccraditation
|
|
{
|
|
public class TabModel
|
|
{
|
|
private GridControlEx gc;
|
|
public GridControlEx Gc
|
|
{
|
|
get { return gc; }
|
|
set { gc = value; }
|
|
}
|
|
public String StepName { get; set; }
|
|
public Label StepLabel { get; set; }
|
|
}
|
|
}
|