You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
469 B
C#
25 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace Mesnac.Basic
|
|
{
|
|
public class FormInfo
|
|
{
|
|
private string _name = "";
|
|
[Description("被选择项的名称,可修改。"), Category("选项名称")]
|
|
public string FormName
|
|
{
|
|
get
|
|
{
|
|
return _name;
|
|
}
|
|
set
|
|
{
|
|
_name = value;
|
|
}
|
|
}
|
|
}
|
|
}
|