init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,33 @@
using System;
namespace Zhaizj.Framework.Common.Resource {
/// <summary>
/// 属性数据项,常用于下拉列表中
/// </summary>
public class PropertyItem {
private String _name;
private int _value;
public PropertyItem() {
}
public PropertyItem( String name, int val ) {
_name = name;
_value = val;
}
public String Name {
get { return _name; }
set { _name = value; }
}
public int Value {
get { return _value; }
set { _value = value; }
}
}
}