using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//user_userattribute
public class user_userattribute
{
///
/// GID
///
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// USERID
///
private string _userid;
public string USERID
{
get{ return _userid; }
set{ _userid = value; }
}
///
/// ATTRIBUTEID
///
private string _attributeid;
public string ATTRIBUTEID
{
get{ return _attributeid; }
set{ _attributeid = value; }
}
///
/// VALUE
///
private string _value;
public string VALUE
{
get{ return _value; }
set{ _value = value; }
}
}
}