📄 reportinfo.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -