products.cs

来自「手机网店源码」· CS 代码 · 共 43 行

CS
43
字号
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 + =
减小字号Ctrl + -
显示快捷键?