📄 products.cs
字号:
using System;
namespace MobileOnlineShop.Entities
{
/// <summary>
/// Products 的摘要说明。
/// </summary>
public class Products
{
private string _Model;
private string _CategoryName;
private string _ProductImage;
private decimal _UnitPrice;
private string _Description;
public string Model
{
get{ return _Model;}
set{_Model = value;}
}
public string CategoryName
{
get{ return _CategoryName;}
set{_CategoryName = value;}
}
public string ProductImage
{
get{ return _ProductImage;}
set{_ProductImage = value;}
}
public decimal UnitPrice
{
get{ return _UnitPrice;}
set{_UnitPrice = value;}
}
public string Description
{
get{ return _Description;}
set{_Description = value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -