SVN-Revision: r986
This commit is contained in:
cyf
2025-09-10 09:51:21 +00:00
parent ddde8d1bcb
commit 1eeb1f2677
15 changed files with 0 additions and 3659 deletions
@@ -1,22 +0,0 @@
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() : "";
}
}
}