26c18f7d9f
SVN-Revision: r990
23 lines
552 B
C#
23 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.PubBomAlter.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() : "";
|
|
}
|
|
}
|
|
}
|