提交当前本机整理版本
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Lskj.PubModuleExport.Model
|
||||
{
|
||||
public class ProjectModel
|
||||
{
|
||||
public ProjectModel(object editText, object valueText)
|
||||
{
|
||||
this.EditText = editText;
|
||||
this.ValueText = valueText;
|
||||
}
|
||||
public object EditText { get; set; }
|
||||
public object ValueText { get; set; }
|
||||
public override string ToString()
|
||||
{
|
||||
return EditText != null ? this.EditText.ToString() : "";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user