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.
lj_plc/Main/Mesnac.Basic/BasicInfo.cs

25 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
namespace Mesnac.Basic
{
public class BasicInfo
{
private string _name = "";
[Description("<22><>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƣ<EFBFBD><C6A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޸ġ<DEB8>"), Category("ѡ<><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
public string Name
{
get
{
return _name;
}
set
{
_name = value;
}
}
}
}