using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //sys_b_Port public class sys_b_Port { /// /// Id /// private string _id; public string Id { get{ return _id; } set{ _id = value; } } /// /// Value /// private string _value; public string Value { get{ return _value; } set{ _value = value; } } /// /// Name /// private string _name; public string Name { get{ return _name; } set{ _name = value; } } } }