reportinfo.cs
来自「《ASP.NET 2.0 XML 高级编程(第3版)》 《ASP.NET 2.」· CS 代码 · 共 77 行
CS
77 行
using System;
using System.Collections.Generic;
using System.Text;
namespace ShoppingAssistantLib
{
[Serializable]
public class ReportInfo
{
protected int _productID;
protected int _categoryID;
protected string _browser;
protected string _requestType;
protected string _authenticated;
public int ProductID
{
get
{
return _productID;
}
set
{
_productID = value;
}
}
public int CategoryID
{
get
{
return _categoryID;
}
set
{
_categoryID = value;
}
}
public string Browser
{
get
{
return _browser;
}
set
{
_browser = value;
}
}
public string RequestType
{
get
{
return _requestType;
}
set
{
_requestType = value;
}
}
public string Authenticated
{
get
{
return _authenticated;
}
set
{
_authenticated = value;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?